3b5466833b8b7fee322f6d59f4209e0853036c60
[cql-java-moved-to-github.git] / src / main / java / org / z3950 / zing / cql / MissingParameterException.java
1 // $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
2
3 package org.z3950.zing.cql;
4 import java.lang.Exception;
5
6
7 /**
8  * Exception indicating that a required property was not specified.
9  *
10  * @version     $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
11  */
12 public class MissingParameterException extends Exception {
13     /**
14      * Creates a new <TT>MissingParameterException</TT>.
15      * @param s
16      *  The name of the property whose value was required but not supplied.
17      */
18     public MissingParameterException(String s) {
19         super(s);
20     }
21 }