Module  java.base
软件包  java.io

Class IOError

  • All Implemented Interfaces:
    Serializable


    public class IOError
    extends Error
    当出现严重I / O错误时抛出。
    从以下版本开始:
    1.6
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • IOError

        public IOError​(Throwable cause)
        构造具有指定原因的新的IOError实例。 IOError是通过详细消息(cause==null ? null : cause.toString()) (通常包含原因的类和详细信息)创建的。
        参数
        cause - The cause of this error, or null if the cause is not known