国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

異常捕獲

2019-11-10 17:21:36
字體:
供稿:網(wǎng)友
/** * @date 2016年8月1日 下午5:43:23 */class FatherException extends Exception {    public FatherException() {        super();    }    public FatherException(Throwable arg0) {        super(arg0);    }}/** * @date 2016年8月1日 下午5:43:23 * @author zhangxingan */class grandFatherException extends Exception {    public grandFatherException() {        super();    }    public grandFatherException(Throwable arg0) {        super(arg0);    }}class SonException extends FatherException {    public SonException() {        super();    }    public SonException(Throwable arg0) {        super(arg0);    }}class A1 {    public static void throwE() throws FatherException{        A2.throwE();    }}class A2 {    public static void throwE() throws FatherException{        A3.throwE();    }}class A3 {    public static void throwE() throws FatherException{        throw new SonException();    }}public class FatherExceptionTest {    public static void main(String[] args) throws Exception {        try {            try {                try {                    throw new SonException();                } catch (Exception a) {                    System.out.PRintln("Caught FatherException");                    throw new FatherException(a);                }            } catch (Exception e) {                // TODO: handle exception                throw new grandFatherException(e);            }                    } catch (Exception s) {            System.out.println("Caught SonExceptioneze");            return;        } finally {            System.out.println("Hello World!");        }    }}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 饶阳县| 湛江市| 敦煌市| 牙克石市| 丘北县| 巨野县| 盐亭县| 剑阁县| 陈巴尔虎旗| 长治市| 东丽区| 青川县| 孝感市| 保山市| 香格里拉县| 砚山县| 民勤县| 东乡族自治县| 新野县| 花莲县| 独山县| 嵊泗县| 黑龙江省| 长治县| 岳西县| 赤城县| 武安市| 和硕县| 宜兴市| 逊克县| 雅安市| 金平| 宜兰县| 汾阳市| 宁都县| 舟山市| 宁津县| 蒙自县| 阿克苏市| 枣庄市| 弥勒县|