java进行error捕获和处理示例(java异常捕获)
java进行error捕获和处理示例(java异常捕获)
发布时间:2016-12-28 来源:查字典编辑
摘要:下面给个小例子,来验证一下error的捕获。复制代码代码如下:publicclassTestCatchErrorextendsError{p...

下面给个小例子,来验证一下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)

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Java学习
热门Java学习
编程开发子分类