FileDocCategorySizeDatePackage
StreamCorruptedException.javaAPI DocJava SE 5 API856Fri Aug 26 14:57:00 BST 2005java.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.14, 12/19/03
since
JDK1.1

Fields Summary
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