Remove CVS expansions
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / UnknownIndexException.java
1
2 package org.z3950.zing.cql;
3
4
5 /**
6  * Exception indicating that an index was not recognised.
7  * At compilation time, we accept any syntactically valid index;
8  * but when rendering a tree out as PQF, we need to translate the
9  * indexes 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 UnknownIndexException extends PQFTranslationException {
15     /**
16      * Creates a new <TT>UnknownIndexException</TT>.
17      * @param s
18      *  The index for which there was no PQF configuration.
19      */
20     public UnknownIndexException(String s) {
21         super(s);
22     }
23 }