Most visited

Recently visited

Added in API level 9

IOError

public class IOError
extends Error

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.io.IOError


当发生严重的I / O错误时抛出。

Summary

Public constructors

IOError(Throwable cause)

用指定的原因构造一个IOError的新实例。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

IOError

Added in API level 9
IOError (Throwable cause)

用指定的原因构造一个IOError的新实例。 IOError是使用详细消息(cause==null ? null : cause.toString()) (通常包含原因的类和详细消息)创建的。

Parameters
cause Throwable: The cause of this error, or null if the cause is not known

Hooray!