类 NestedCheckedException

    • 构造器详细资料

      • NestedCheckedException

        public NestedCheckedException​(String msg)
        Construct a NestedCheckedException with the specified detail message.
        参数:
        msg - the detail message
      • NestedCheckedException

        public NestedCheckedException​(String msg,
                                      Throwable cause)
        Construct a NestedCheckedException with the specified detail message and nested exception.
        参数:
        msg - the detail message
        cause - the nested exception
    • 方法详细资料

      • getRootCause

        public Throwable getRootCause()
        Retrieve the innermost cause of this exception, if any.
        返回:
        the innermost exception, or null if none
      • getMostSpecificCause

        public Throwable getMostSpecificCause()
        Retrieve the most specific cause of this exception, that is, either the innermost cause (root cause) or this exception itself.

        Differs from getRootCause() in that it falls back to the present exception if there is no root cause.

        返回:
        the most specific cause (never null)
        从以下版本开始:
        2.0.3
      • contains

        public boolean contains​(Class<?> exType)
        Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type.
        参数:
        exType - the exception type to look for
        返回:
        whether there is a nested exception of the specified type