0272e843a3e84d67d237ebdf4f704532d9ff429b
[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
5
6 /**
7  * Base class for exceptions occurring when translating parse trees to PQF.
8  *
9  * @version $Id: PQFTranslationException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
10  */
11 public class PQFTranslationException extends Exception {
12     PQFTranslationException(String s) {
13         super(s);
14     }
15 }