public class IOException extends Exception
FileNotFoundException or EOFException.| Constructor and Description |
|---|
IOException()
Constructs a new
IOException with its stack trace filled in. |
IOException(String detailMessage)
Constructs a new
IOException with its stack trace and detail
message filled in. |
IOException(String message,
Throwable cause)
Constructs a new instance of this class with detail message and cause
filled in.
|
IOException(Throwable cause)
Constructs a new instance of this class with its detail cause filled in.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic IOException()
IOException with its stack trace filled in.public IOException(String detailMessage)
IOException with its stack trace and detail
message filled in.detailMessage - the detail message for this exception.public IOException(String message, Throwable cause)
message - The detail message for the exception.cause - The detail cause for the exception.public IOException(Throwable cause)
cause - The detail cause for the exception.