问答详情
源自:1-7 Java 中的异常链

我写的跟老师写的一样,但是总是在报错,是什么原因呢?

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;

}

}

}


提问者:蝌蚪兄 2015-12-20 00:52

个回答

  • gao634209276
    2016-02-10 12:58:43

    报的什么错,肯定会报的啊,就是要报出异常信息啊~~~~

  • _Jack_Han_
    2016-02-05 14:49:12

    最后的re是哪里来的?

  • 蝌蚪兄
    2015-12-24 22:00:07

    恩,我试着继承了这个类,但是还是不行,就是自定义类。。。

  • Giggbox
    2015-12-20 02:24:16

    你的DrunkException这个类应该没有继承自Exception类吧,java中可没有这个类