start page | rating of books | rating of authors | reviews | copyrights

Java in a Nutshell

Previous Chapter 24
The java.io Package
Next
 

24.33 java.io.IOException (JDK 1.0)

Signals that an exceptional condition has occurred during input or output. This class has several more specific subclasses. See EOFException, FileNotFoundException, InterruptedIOException, and UTFDataFormatException.

public class IOException extends Exception {
    // Public Constructors
            public IOException();
            public IOException(String s);
}

Hierarchy:

Object->Throwable(Serializable)->Exception->IOException

Extended By:

CharConversionException, EOFException, FileNotFoundException, InterruptedIOException, MalformedURLException, ObjectStreamException, ProtocolException, SocketException, SyncFailedException, UnknownHostException, UnknownServiceException, UnsupportedEncodingException, UTFDataFormatException, ZipException

Thrown By:

Many methods


Previous Home Next
java.io.InvalidObjectException (JDK 1.1) Book Index java.io.LineNumberInputStream (JDK 1.0; Deprecated.)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java