public class IIOException extends IOException
In addition to a message string, a reference to another Throwable (Error or Exception) is maintained. This reference, if non-null, refers to the event that caused this exception to occur. For example, an IOException while reading from a File would be stored there.
| Constructor and Description |
|---|
IIOException(String
Constructs an
IIOException with a given message
String.
|
IIOException(String
Constructs an
IIOException with a given message
String and a
Throwable that was its underlying cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic IIOException(Stringmessage)
IIOException with a given message
String. No underlying cause is set;
getCause will return
null.
message - the error message.
Throwable.getMessage()
public IIOException(Stringmessage, Throwable cause)
IIOException with a given message
String and a
Throwable that was its underlying cause.
message - the error message.
cause - the
Throwable (
Error or
Exception) that caused this exception to occur.
Throwable.getCause() ,
Throwable.getMessage()