/* * @topic T11379 Exception demo VI * @brief class ExceptionCustom extends Exception */ package exceptions; public class ExceptionCustom extends Exception { public ExceptionCustom( String description ) { super( description ); } }//class ExceptionCustom