Remove CVS expansions
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / UnknownRelationException.java
1
2 package org.z3950.zing.cql;
3
4
5 /**
6  * Exception indicating that a relation was not recognised.
7  * At compilation time, we accept any syntactically valid relation;
8  * but when rendering a tree out as PQF, we need to translate the
9  * relations into sets of Type-1 query attributes.  If we can't do
10  * that, because the PQF configuration doesn't know about a relation,
11  * we throw one of these babies.
12  *
13  */
14 public class UnknownRelationException extends PQFTranslationException {
15     /**
16      * Creates a new <TT>UnknownRelationException</TT>.
17      * @param s
18      *  The relation for which there was no PQF configuration.
19      */
20     public UnknownRelationException(String s) {
21         super(s);
22     }
23 }