我的怎么运行不了
public static void mian(String[]ages){
Chian c=new Chian();
try {
c.test2();
} catch (Exception e) {
e.printStackTrace();
}
}
public void test1() throws TetsException{
throw new TetsException("喝车别开酒!!");
}
public void test2(){
try {
test1();
} catch (TetsException e) {
// TODO Auto-generated catch block
RuntimeException ext=new RuntimeException("司机一滴酒,亲人两行泪~~");
ext.initCause(e);
throw ext;
}
我的怎么运行不了,没显示。这是怎么回事!MyEclipse 9版本不行吗?