1/*
2 * XZIOException
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10package org.tukaani.xz;
11
12/**
13 * Generic {@link java.io.IOException IOException} specific to this package.
14 * The other IOExceptions in this package extend
15 * from <code>XZIOException</code>.
16 */
17public class XZIOException extends java.io.IOException {
18    private static final long serialVersionUID = 3L;
19
20    public XZIOException() {
21        super();
22    }
23
24    public XZIOException(String s) {
25        super(s);
26    }
27}
28