/*
 * @topic T11377 Exception demo III
 * @brief class ExceptionCustom extends Exception
*/

package exceptions;

public class ExceptionCustom extends Exception {

    public ExceptionCustom( String description )
    {
        super( description );
    }

}//class ExceptionCustom