package Neuro; /** all Exception of the Neuro package are reported using this class */ public class NeuroException extends Exception { public NeuroException( String s ) { super( s ); } }