我的怎么運行不了
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版本不行嗎?
2015-07-29
就是沒顯示,一片空白
2015-07-29
是這樣么???