<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  MODULE: BadParameterException       AUTHOR: Tim Sabin               //
//  DESCRIPTION: BadParameterException is thrown when an attempt to     //
//    create a Parameters object is made where the object violates the  //
//    contract.                                                         //
//  DATE CREATED: 07/02/1998            LAST UPDATED: 07/02/1998        //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

/** &lt;code&gt;BadParameterException&lt;/code&gt; is thrown when an attempt to
 * create a Parameters object is made where the object would violate it's
 * contract. */
public class BadParameterException extends Exception {
    /** Create a BadParameterException with the passed String. */
    public BadParameterException (String message) {
        super (message);
    }
}
</pre></body></html>