Top Description Fields Constructors
java.io

public Class IOError

extends Error
Class Inheritance

Thrown when a serious I/O error has occurred.
Author
Xueming Shen
Since
1.6

Field Summary

Modifier and TypeField and Description
private static final long

Constructor Summary

AccessConstructor and Description
public
IOError(Throwable
The cause of this error, or null if the cause is not known
cause
)

Constructs a new instance of IOError with the specified cause.

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.lang.Error.serialVersionUID.

Annotations
@Serial

Constructor Detail

IOErrorback to summary
public IOError(Throwable cause)

Constructs a new instance of IOError with the specified cause. The IOError is created with the detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters
cause:Throwable

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