cfd549d25def32b4160b5f2b8a7a6b90cf35e696
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / ParameterMissingException.java
1 // $Id: ParameterMissingException.java,v 1.1 2002-10-30 09:19:26 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: ParameterMissingException.java,v 1.1 2002-10-30 09:19:26 mike Exp $
11  */
12 public class ParameterMissingException extends Exception {
13     ParameterMissingException(String s) {
14         super(s);
15     }
16 }