package rebelsky.hw20; /** * Some kind of exception. * * @author Samuel A. Rebelsky * @version 1.0 of September 2004 */ public class GenericException extends Exception { public GenericException() { super(); } // GenericException public GenericException(String note) { super(note); } // GenericException } // class GenericException