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