类 NestedIoException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.alibaba.nacos.common.packagescan.util.NestedIoException
所有已实现的接口:
Serializable

public class NestedIoException extends IOException
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

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

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

    • getMessage

      public String getMessage()
      Return the detail message, including the message from the nested exception if there is one.
      覆盖:
      getMessage 在类中 Throwable