Towards 0.2 --
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / UnknownRelationException.java
1 // $Id: UnknownRelationException.java,v 1.1 2002-11-06 00:05:58 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.lang.Exception;
5
6
7 /**
8  * Exception indicating that a relation was not recognised.
9  * At compilation time, we accept any syntactically valid relation;
10  * but when rendering a tree out as PQF, we need to translate the
11  * relations into sets of Type-1 query attributes.  If we can't do
12  * that, we throw one of these babies.
13  *
14  * @version $Id: UnknownRelationException.java,v 1.1 2002-11-06 00:05:58 mike Exp $
15  */
16 public class UnknownRelationException extends Exception {
17     UnknownRelationException(String s) {
18         super(s);
19     }
20 }