//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  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        //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

/** <code>BadParameterException</code> 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);
    }
}
