Remove CVS expansions
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / UnknownPositionException.java
1
2 package org.z3950.zing.cql;
3
4
5 /**
6  * Exception indicating that a position was not recognised.
7  * When rendering a tree out as PQF, each term is classified either as
8  * <TT>any</TT>, <TT>first</TT>, <TT>last</TT> or
9  * <TT>firstAndLast</TT>, depending on whether it begins and/or ends
10  * with the word-anchoring meta-character <TT>^</TT>.  Its
11  * classification is looked up as a <TT>position</TT> in the PQF
12  * configuration.  If the position is not configured, we throw one of
13  * these babies.
14  *
15  */
16 public class UnknownPositionException extends PQFTranslationException {
17     /**
18      * Creates a new <TT>UnknownPositionException</TT>.
19      * @param s
20      *  The position for which there was no PQF configuration.
21      */
22     public UnknownPositionException(String s) {
23         super(s);
24     }
25 }