'qualifier' replaced by 'index' throughout
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / UnknownQualifierException.java
index 8bad79e..009ef9c 100644 (file)
@@ -1,24 +1,24 @@
-// $Id: UnknownQualifierException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
+// $Id: UnknownQualifierException.java,v 1.3 2007-06-27 22:39:55 mike Exp $
 
 package org.z3950.zing.cql;
 import java.lang.Exception;
 
 
 /**
- * Exception indicating that a qualifier was not recognised.
- * At compilation time, we accept any syntactically valid qualifier;
+ * Exception indicating that an index was not recognised.
+ * At compilation time, we accept any syntactically valid index;
  * but when rendering a tree out as PQF, we need to translate the
- * qualifiers into sets of Type-1 query attributes.  If we can't do
+ * indexes into sets of Type-1 query attributes.  If we can't do
  * that, because the PQF configuration doesn't know about a relation,
  * we throw one of these babies.
  *
- * @version $Id: UnknownQualifierException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
+ * @version $Id: UnknownQualifierException.java,v 1.3 2007-06-27 22:39:55 mike Exp $
  */
 public class UnknownQualifierException extends PQFTranslationException {
     /**
      * Creates a new <TT>UnknownQualifierException</TT>.
      * @param s
-     * The qualifier for which there was no PQF configuration.
+     * The index for which there was no PQF configuration.
      */
     public UnknownQualifierException(String s) {
        super(s);