java异常捕获 java进行error捕获和处理示例(java异常捕获)
人气:0想了解java进行error捕获和处理示例(java异常捕获)的相关内容吗,在本文为您仔细讲解java异常捕获的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:java异常捕获,下面大家一起来学习吧。
下面给个小例子,来验证一下error的捕获。
复制代码 代码如下:
public class TestCatchError extends Error{
private static final long serialVersionUID = -351488225420878020L;
public TestCatchError(){
super();
}
public TestCatchError(String msg){
super(msg);
}
public static void main(String[] args) {
try {
throw new TestCatchError("test catch error");
} catch (Throwable t) {
System.out.println("step in the catch ~");
t.printStackTrace();
}
}
}
运行结果:
复制代码 代码如下:
step in the catch ~
TestCatchError: test catch error
at TestCatchError.main(TestCatchError.java:23)
加载全部内容