FileDocCategorySizeDatePackage
InvalidObjectException.javaAPI DocJava SE 5 API808Fri Aug 26 14:57:00 BST 2005java.io

InvalidObjectException

public class InvalidObjectException extends ObjectStreamException
Indicates that one or more deserialized objects failed validation tests. The argument should provide the reason for the failure.
see
ObjectInputValidation
since
JDK1.1
author
unascribed
version
1.16, 01/12/04
since
JDK1.1

Fields Summary
Constructors Summary
public InvalidObjectException(String reason)
Constructs an InvalidObjectException.

param
reason Detailed message explaining the reason for the failure.
see
ObjectInputValidation

	super(reason);
    
Methods Summary