模块  java.base
软件包  java.io

Class IOException

    • 构造方法详细信息

      • IOException

        public IOException()
        构造一个 IOException其中包含 null作为其错误详细消息。
      • IOException

        public IOException​(String message)
        使用指定的详细消息构造一个 IOException
        参数
        message - 详细消息(保存以供以后通过 Throwable.getMessage()方法检索)
      • IOException

        public IOException​(String message,
                           Throwable cause)
        使用指定的详细消息和原因构造一个IOException

        请注意,与cause关联的详细消息不会自动合并到此异常的详细消息中。

        参数
        message - 详细消息(保存以供以后通过 Throwable.getMessage()方法检索)
        cause - 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许空值,表示原因不存在或未知。)
        从以下版本开始:
        1.6
      • IOException

        public IOException​(Throwable cause)
        构造一个IOException与指定的原因和详细消息(cause==null ? null : cause.toString()) (它通常包含的类和详细消息cause )。 此构造函数对于IO异常非常有用,这些异常只是其他throwable的包装器。
        参数
        cause - 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许空值,表示原因不存在或未知。)
        从以下版本开始:
        1.6