Mavenized.
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / CQLParseException.java
diff --git a/src/main/java/org/z3950/zing/cql/CQLParseException.java b/src/main/java/org/z3950/zing/cql/CQLParseException.java
new file mode 100644 (file)
index 0000000..845dfff
--- /dev/null
@@ -0,0 +1,23 @@
+// $Id: CQLParseException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
+
+package org.z3950.zing.cql;
+import java.lang.Exception;
+
+
+/**
+ * Exception indicating that an error ocurred parsing CQL.
+ *
+ * @version    $Id: CQLParseException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
+ */
+public class CQLParseException extends Exception {
+    /**
+     * Creates a new <TT>CQLParseException</TT>.
+     * @param s
+     * An error message describing the problem with the query,
+     * usually a syntax error of some kind.
+     */
+    public CQLParseException(String s) {
+       super(s);
+    }
+}
+