Towards 0.2 --
[cql-java-moved-to-github.git] / src / org / z3950 / zing / cql / MissingParameterException.java
1 // $Id: MissingParameterException.java,v 1.1 2002-11-06 00:05:58 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.1 2002-11-06 00:05:58 mike Exp $
11  */
12 public class MissingParameterException extends Exception {
13     MissingParameterException(String s) {
14         super(s);
15     }
16 }