慕粉1474434083
2017-11-29 22:21
package com.imooc;
public class ChainTest {
/**
* test1():抛出了“喝大了”异常
* test2():调用test1(),捕获“喝大了”异常,并且包装成运行时异常,继续抛出
* main方法中,调用test2(),尝试捕获test2()抛出的异常
* @param args
*/
public static void main(String[] args) {
ChainTest ct = new ChainTest();
try {
ct.test2();
} catch (Exception e) {
// TODO: handle exception
}
}
public void test1() throws DrunkException{
throw new DrunkException("喝车别开酒!");
}
public void test2(){
try {
test1();
} catch (DrunkException e) {
// TODO Auto-generated catch block
RuntimeException newExc = new RuntimeException("司机一滴酒,亲人两行泪~~");
newExc.initCause(e);
throw newExc;
}
}
}
main方法中的try 。。。 catch中的catch没有结果,也就是你捕获了异常但是你没有处理结果,
main方法中的catch下少了 e.printStackTrace();
你的main()方法里catch中什么也没写 当然什么也没有。。。。
Java入门第三季
409792 学习 · 4340 问题
相似问题