ee237f5ff4a89fc75247421616b3c47975209490
[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
5
6 /**
7  * Exception indicating that an error ocurred parsing CQL.
8  *
9  * @version     $Id: CQLParseException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
10  */
11 public class CQLParseException extends Exception {
12     /**
13      * Creates a new <TT>CQLParseException</TT>.
14      * @param s
15      *  An error message describing the problem with the query,
16      *  usually a syntax error of some kind.
17      */
18     public CQLParseException(String s) {
19         super(s);
20     }
21 }
22