/**
 * Scheme for user-defined exception class.  Replace My with the name
 * of the exception class and complete and update the documentation.
 * 
 * @version     
 * @author      
 */
public class MyException extends Exception
{
    /** 
     * Constructs a MyException without error message.
     */
    public MyException()
    {
        super();
    }

    /** 
     * Constructs a MyException with the specified error message.
     * @param errorMessage Error message.
     */
    public MyException(String errorMessage)
    {
        super(errorMessage);
    }
}
