类 NestedIoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.alibaba.nacos.common.packagescan.util.NestedIoException
- 所有已实现的接口:
Serializable
Copy from https://github.com/spring-projects/spring-framework.git, with less modifications
Subclass of
IOException that properly handles a root cause,
exposing the root cause just like NestedChecked/RuntimeException does.
Proper root cause handling has not been added to standard IOException before Java 6, which is why we need to do it ourselves for Java 5 compatibility purposes.
The similarity between this class and the NestedChecked/RuntimeException class is unavoidable, as this class needs to derive from IOException.
- 从以下版本开始:
- 2.0
- 作者:
- Juergen Hoeller
- 另请参阅:
-
构造器概要
构造器构造器说明NestedIoException(String msg) Construct aNestedIOExceptionwith the specified detail message.NestedIoException(String msg, Throwable cause) Construct aNestedIOExceptionwith the specified detail message and nested exception. -
方法概要
修饰符和类型方法说明Return the detail message, including the message from the nested exception if there is one.
-
构造器详细资料
-
NestedIoException
Construct aNestedIOExceptionwith the specified detail message.- 参数:
msg- the detail message
-
NestedIoException
Construct aNestedIOExceptionwith the specified detail message and nested exception.- 参数:
msg- the detail messagecause- the nested exception
-
-
方法详细资料
-
getMessage
Return the detail message, including the message from the nested exception if there is one.- 覆盖:
getMessage在类中Throwable
-