Finish (more or less) to CQL-to-PQF translator.
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / MissingParameterException.java
index 3d184bd..3b54668 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: MissingParameterException.java,v 1.1 2002-11-06 00:05:58 mike Exp $
+// $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
 
 package org.z3950.zing.cql;
 import java.lang.Exception;
@@ -7,10 +7,15 @@ import java.lang.Exception;
 /**
  * Exception indicating that a required property was not specified.
  *
- * @version    $Id: MissingParameterException.java,v 1.1 2002-11-06 00:05:58 mike Exp $
+ * @version    $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
  */
 public class MissingParameterException extends Exception {
-    MissingParameterException(String s) {
+    /**
+     * Creates a new <TT>MissingParameterException</TT>.
+     * @param s
+     * The name of the property whose value was required but not supplied.
+     */
+    public MissingParameterException(String s) {
        super(s);
     }
 }