java.io.StreamCorruptedException
java.io.ObjectStreamException
None
None
New as of JDK 1.1
A StreamCorruptedException is thrown during object deserialization to indicate that the stream being read is corrupted and doesn't contain valid serialized object data.
public class java.io.StreamCorruptedException 
             extends java.io.ObjectStreamException {
  // Constructors
  public StreamCorruptedException();
  public StreamCorruptedException(String reason);
}
This constructor creates a StreamCorruptedException with no reason string.
A description of the reason this exception was thrown.
This constructor creates a StreamCorruptedException with the specified reason string.
| 
 Method  | 
 Inherited From  | 
 Method  | 
 Inherited From  | 
|---|---|---|---|
| 
 clone()  | 
 Object  | 
 equals(Object)  | 
 Object  | 
| 
 fillInStackTrace()  | 
 Throwable  | 
 finalize()  | 
 Object  | 
| 
 getClass()  | 
 Object  | 
 getLocalizedMessage()  | 
 Throwable  | 
| 
 getMessage()  | 
 Throwable  | 
 hashCode()  | 
 Object  | 
| 
 notify()  | 
 Object  | 
 notifyAll()  | 
 Object  | 
| 
 printStackTrace()  | 
 Throwable  | 
 printStackTrace(PrintStream)  | 
 Throwable  | 
| 
 printStackTrace(PrintWriter)  | 
 Throwable  | 
 toString()  | 
 Object  | 
| 
 wait()  | 
 Object  | 
 wait(long)  | 
 Object  | 
| 
 wait(long, int)  | 
 Object  | 
Exception, ObjectStreamException, Throwable