FileDocCategorySizeDatePackage
StreamCorruptedException.javaAPI DocJava SE 6 API929Tue Jun 10 00:25:34 BST 2008java.io

StreamCorruptedException

public class StreamCorruptedException extends ObjectStreamException
Thrown when control information that was read from an object stream violates internal consistency checks.
author
unascribed
version
1.17, 11/17/05
since
JDK1.1

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public StreamCorruptedException(String reason)
Create a StreamCorruptedException and list a reason why thrown.

param
reason String describing the reason for the exception.


                            
       
	super(reason);
    
public StreamCorruptedException()
Create a StreamCorruptedException and list no reason why thrown.

	super();
    
Methods Summary