Remove CVS expansions
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / PQFTranslationException.java
1
2 package org.z3950.zing.cql;
3
4
5 /**
6  * Base class for exceptions occurring when translating parse trees to PQF.
7  *
8  */
9 public class PQFTranslationException extends Exception {
10     PQFTranslationException(String s) {
11         super(s);
12     }
13 }