Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 1.03 KB

File metadata and controls

14 lines (9 loc) · 1.03 KB

openize.io.IOException

Signals that an I/O exception of some sort has occurred. Intended for throwing the uncontrollable exception.

Constructors

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.)

[Back to API_README]