/* * XZIOException * * Author: Lasse Collin * * This file has been put into the public domain. * You can do whatever you want with this file. */ package org.tukaani.xz; /** * Generic {@link java.io.IOException IOException} specific to this package. * The other IOExceptions in this package extend * from XZIOException. */ public class XZIOException extends java.io.IOException { private static final long serialVersionUID = 3L; public XZIOException() { super(); } public XZIOException(String s) { super(s); } }