Remove CVS expansions
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / MissingParameterException.java
1
2 package org.z3950.zing.cql;
3
4
5 /**
6  * Exception indicating that a required property was not specified.
7  *
8  */
9 public class MissingParameterException extends Exception {
10     /**
11      * Creates a new <TT>MissingParameterException</TT>.
12      * @param s
13      *  The name of the property whose value was required but not supplied.
14      */
15     public MissingParameterException(String s) {
16         super(s);
17     }
18 }