source: josm/trunk/src/org/tukaani/xz/XZIOException.java@ 13686

Last change on this file since 13686 was 13350, checked in by stoecker, 6 years ago

see #15816 - add XZ support

File size: 602 bytes
Line 
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}
Note: See TracBrowser for help on using the repository browser.