aboutsummaryrefslogtreecommitdiff
path: root/src/org/tukaani/xz/XZIOException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/tukaani/xz/XZIOException.java')
-rw-r--r--src/org/tukaani/xz/XZIOException.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/org/tukaani/xz/XZIOException.java b/src/org/tukaani/xz/XZIOException.java
new file mode 100644
index 0000000..14675f5
--- /dev/null
+++ b/src/org/tukaani/xz/XZIOException.java
@@ -0,0 +1,27 @@
+/*
+ * XZIOException
+ *
+ * Author: Lasse Collin <lasse.collin@tukaani.org>
+ *
+ * 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 <code>XZIOException</code>.
+ */
+public class XZIOException extends java.io.IOException {
+ private static final long serialVersionUID = 3L;
+
+ public XZIOException() {
+ super();
+ }
+
+ public XZIOException(String s) {
+ super(s);
+ }
+}