package www;
public class Ads {
public static void main(String[] args) {
try {
test();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
static void test(){
try {
throw new Throwable("我定义的异常");
} catch (Throwable e) {
System.out.println("e.getMessage()=" +e.getMessage());
System.out.println("e.toString()=" +e.toString());
e.printStackTrace();
}
}
}
输出结果:
java.lang.Throwable: 我定义的异常
at www.Ads.test(Ads.java:19)
at www.Ads.main(Ads.java:8)
e.getMessage()=我定义的异常
e.toString()=java.lang.Throwable: 我定义的异常
注意:
不用JAVA类库的异常类,要求自定义的异常类必须是Exception的子类。自定义异常的try语句只能包含一个抛出异常语句,能抛出的异常必须是Throwable类或者其子类。