自己自定义了一个异常后怎么调用呢?
try{ System.out.print("...."); }catch (你的自定义异常类 e) { e.你的方法(); }
自定义异常是用来抛出的,如:
throw new MyException("异常消息");