85ec184a14079851bedbe4b566aa5e7ea2e745ab
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / PQFTranslationException.java
1 // $Id: PQFTranslationException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.lang.Exception;
5
6
7 /**
8  * Base class for exceptions occurring when translating parse trees to PQF.
9  *
10  * @version $Id: PQFTranslationException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
11  */
12 public class PQFTranslationException extends Exception {
13     PQFTranslationException(String s) {
14         super(s);
15     }
16 }