07873b8e84c8e757a78241390afe1460e3d2c5d6
[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
5
6 /**
7  * Exception indicating that a required property was not specified.
8  *
9  * @version     $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
10  */
11 public class MissingParameterException extends Exception {
12     /**
13      * Creates a new <TT>MissingParameterException</TT>.
14      * @param s
15      *  The name of the property whose value was required but not supplied.
16      */
17     public MissingParameterException(String s) {
18         super(s);
19     }
20 }