aboutsummaryrefslogtreecommitdiff
path: root/src/org/xbill/DNS/TextParseException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/xbill/DNS/TextParseException.java')
-rw-r--r--src/org/xbill/DNS/TextParseException.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/org/xbill/DNS/TextParseException.java b/src/org/xbill/DNS/TextParseException.java
new file mode 100644
index 0000000..3b9a425
--- /dev/null
+++ b/src/org/xbill/DNS/TextParseException.java
@@ -0,0 +1,25 @@
+// Copyright (c) 2002-2004 Brian Wellington (bwelling@xbill.org)
+
+package org.xbill.DNS;
+
+import java.io.*;
+
+/**
+ * An exception thrown when unable to parse text.
+ *
+ * @author Brian Wellington
+ */
+
+public class TextParseException extends IOException {
+
+public
+TextParseException() {
+ super();
+}
+
+public
+TextParseException(String s) {
+ super(s);
+}
+
+}