home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Java in a Nutshell

Previous Chapter 24
The java.io Package
Next
 

24.60 java.io.StreamCorruptedException (JDK 1.1)

This exception signals that the data stream being read by an ObjectInputStream has been corrupted and does not contain valid serialized object data.

public class StreamCorruptedException extends ObjectStreamException {
    // Public Constructors
            public StreamCorruptedException(String reason);
            public StreamCorruptedException();
}

Hierarchy:

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

Thrown By:

ObjectInputStream(), ObjectInputStream.readStreamHeader()


Previous Home Next
java.io.Serializable (JDK 1.1) Book Index java.io.StreamTokenizer (JDK 1.0)

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