为什么编的是错误的呢????
package demo.q;
public class ChainTest {
/*
* test1()抛出"喝大了“异常
* test2():调用test1()捕获"喝大了"异常,并且包装成运行时异常,继续抛出
* main方法中,调用test2()尝试捕获test2()方法抛出的异常
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
public void test1() throws DrunkException{
throw new DrunkException("喝酒别开车!")
}
}
}