package com.xuan;
public class ChainTest{
public static void main(String[] args) {
// TODO Auto-generated method stub
ChainTest ct = new ChainTest();
try{
ct.test2();
}catch(Exception e){
e.printStackTrace();
}
}
public void test1()throws DrunkException{
throw new DrunkException ("喝酒不要开车");
}
public void test2(){
try{
test1();
}catch(DrunkException e){
RuntimeException re = new RuntimeException(e);
throw re;
}
}
}
报的什么错,肯定会报的啊,就是要报出异常信息啊~~~~
最后的re是哪里来的?
恩,我试着继承了这个类,但是还是不行,就是自定义类。。。
你的DrunkException这个类应该没有继承自Exception类吧,java中可没有这个类