异常类Exception(String message, Throwable cause)中的cause理解

Posted 曹军

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异常类Exception(String message, Throwable cause)中的cause理解相关的知识,希望对你有一定的参考价值。

  这个在构造函数里面竟然有一个Throwable,感觉有些奇怪。

1.

  Throwable cause 这里cause要传一个Throwable的子类异常进去么?

  是引起这个异常的异常,如果这个值是空值,那么这个异常就是源头;如果这个值等于自己,那么这个异常还没被初始化。

  /**
* The throwable that caused this throwable to get thrown, or null if this
* throwable was not caused by another throwable, or if the causative
* throwable is unknown. If this field is equal to this throwable itself,
* it indicates that the cause of this throwable has not yet been
* initialized.
*
* @serial
* @since 1.4
*/

以上是关于异常类Exception(String message, Throwable cause)中的cause理解的主要内容,如果未能解决你的问题,请参考以下文章

异常类 和String类型的方法

Kotlin基础-异常处理错误

自定义异常类

java中自定义异常为何要继承exception类

异常处理 Exception

C++ exception类:C++标准异常的基类