在 Java 中设置异常原因
我可以看到在捕获一个异常,我可以打印,尽管它总是.e.getCause()
null
我是否需要在某个地方设置它,或者缺少将原因设置为 null 的东西?
我可以看到在捕获一个异常,我可以打印,尽管它总是.e.getCause()
null
我是否需要在某个地方设置它,或者缺少将原因设置为 null 的东西?
异常具有以下属性和 。该消息是一种描述,或多或少准确地告诉人类读者,出了什么问题。这是不同的东西:如果可用,它是另一个(嵌套的)。message
cause
cause
Throwable
如果我们使用这样的自定义异常,则经常使用这个概念:
catch(IOException e) {
throw new ApplicationException("Failed on reading file soandso", e);
// ^ Message ^ Cause
}
回应djangofan的评论:
标准是嵌套表达式(原因)也打印其堆栈跟踪。
运行这个小应用程序
public class Exceptions {
public static void main(String[] args) {
Exception r = new RuntimeException("Some message");
throw new RuntimeException("Some other message", r);
}
}
将输出
Exception in thread "main" java.lang.RuntimeException: Some other message
at Exceptions.main(Exceptions.java:4)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
Caused by: java.lang.RuntimeException: Some message
at Exceptions.main(Exceptions.java:3)
... 5 more
这两条消息都包括在内。