| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException
All known Subclasses: java.io.UTFDataFormatException, java.io.FileNotFoundException, java.io.EOFException, java.io.ObjectStreamException, java.io.UnsupportedEncodingException, java.io.SyncFailedException, java.io.CharConversionException, java.io.InterruptedIOException,
IOException | public class IOException extends Exception (Code) | | Signals that an I/O exception of some sort has occurred. This
class is the general class of exceptions produced by failed or
interrupted I/O operations.
author: unascribed version: 1.30, 05/05/07 See Also: java.io.InputStream See Also: java.io.OutputStream since: JDK1.0 |
Constructor Summary | |
public | IOException() Constructs an
IOException with
null as its error detail message. | public | IOException(String message) Constructs an
IOException with the specified detail message. | public | IOException(String message, Throwable cause) 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.
Parameters: message - The detail message (which is saved for later retrievalby the IOException.getMessage() method) Parameters: cause - The cause (which is saved for later retrieval by theIOException.getCause() method). | public | IOException(Throwable cause) Constructs an
IOException with the specified cause and a
detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail message of
cause ).
This constructor is useful for IO exceptions that are little more
than wrappers for other throwables.
Parameters: cause - The cause (which is saved for later retrieval by theIOException.getCause() method). |
serialVersionUID | final static long serialVersionUID(Code) | | |
IOException | public IOException()(Code) | | Constructs an
IOException with
null as its error detail message.
|
IOException | public IOException(String message)(Code) | | Constructs an
IOException with the specified detail message.
Parameters: message - The detail message (which is saved for later retrievalby the IOException.getMessage() method) |
IOException | public IOException(String message, Throwable cause)(Code) | | 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.
Parameters: message - The detail message (which is saved for later retrievalby the IOException.getMessage() method) Parameters: cause - The cause (which is saved for later retrieval by theIOException.getCause() method). (A null value is permitted,and indicates that the cause is nonexistent or unknown.) since: 1.6 |
IOException | public IOException(Throwable cause)(Code) | | Constructs an
IOException with the specified cause and a
detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail message of
cause ).
This constructor is useful for IO exceptions that are little more
than wrappers for other throwables.
Parameters: cause - The cause (which is saved for later retrieval by theIOException.getCause() method). (A null value is permitted,and indicates that the cause is nonexistent or unknown.) since: 1.6 |
|
|
|