LOTS of changes. Biggies include proper support for relations, including
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / CQLParseException.java
1 // $Id: CQLParseException.java,v 1.1 2002-10-30 09:19:26 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.lang.Exception;
5
6
7 /**
8  * Exception indicating that an error ocurred parsing CQL.
9  *
10  * @version     $Id: CQLParseException.java,v 1.1 2002-10-30 09:19:26 mike Exp $
11  */
12 public class CQLParseException extends Exception {
13     CQLParseException(String s) {
14         super(s);
15     }
16 }
17