Java异常机制深入理解(5)

public myException(String message) {
        super(message);
    }
   
    //自定义异常中的方法,以符合自己的需求
    public void showInfo() {
        System.out.println(super.getMessage()+"@Line:");
    }
}

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/914cf97844744c6fd557f4ba37e2a6af.html