845dfff94354fcd1c5926e9bcf9b88845c0610f3
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / CQLParseException.java
1 // $Id: CQLParseException.java,v 1.2 2002-11-06 20:13:45 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.2 2002-11-06 20:13:45 mike Exp $
11  */
12 public class CQLParseException extends Exception {
13     /**
14      * Creates a new <TT>CQLParseException</TT>.
15      * @param s
16      *  An error message describing the problem with the query,
17      *  usually a syntax error of some kind.
18      */
19     public CQLParseException(String s) {
20         super(s);
21     }
22 }
23