类 NestedIoException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.alibaba.nacos.common.packagescan.util.NestedIoException
-
- 所有已实现的接口:
java.io.Serializable
public class NestedIoException extends java.io.IOExceptionCopy from https://github.com/spring-projects/spring-framework.git, with less modifications Subclass ofIOExceptionthat 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
- 另请参阅:
getMessage(), 序列化表格
-
-
构造器概要
构造器 构造器 说明 NestedIoException(java.lang.String msg)Construct aNestedIOExceptionwith the specified detail message.NestedIoException(java.lang.String msg, java.lang.Throwable cause)Construct aNestedIOExceptionwith the specified detail message and nested exception.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 java.lang.StringgetMessage()Return the detail message, including the message from the nested exception if there is one.
-
-
-
构造器详细资料
-
NestedIoException
public NestedIoException(java.lang.String msg)
Construct aNestedIOExceptionwith the specified detail message.- 参数:
msg- the detail message
-
NestedIoException
public NestedIoException(java.lang.String msg, java.lang.Throwable cause)Construct aNestedIOExceptionwith the specified detail message and nested exception.- 参数:
msg- the detail messagecause- the nested exception
-
-