FileDocCategorySizeDatePackage
InvalidObjectException.javaAPI DocJava SE 6 API881Tue Jun 10 00:25:34 BST 2008java.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.19, 11/17/05
since
JDK1.1

Fields Summary
private static final long
serialVersionUID
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