Signals that an I/O exception of some sort has occurred. Intended for throwing the uncontrollable exception.
| Name | Description | Parameters |
|---|---|---|
| IOException | Constructs an IOException with null as its error detail message. | |
| IOException | Constructs an IOException with the specified detail message. | String message - The detail message (which is saved for later retrieval by the getMessage() method) |
| IOException | Constructs an IOException with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated into this exception's detail message. | String message - The detail message (which is saved for later retrieval by the getMessage() method) Throwable cause - The cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |