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

NotActiveException

public class NotActiveException extends ObjectStreamException
Thrown when serialization or deserialization is not active.
author
unascribed
version
1.15, 12/19/03
since
JDK1.1

Fields Summary
Constructors Summary
public NotActiveException(String reason)
Constructor to create a new NotActiveException with the reason given.

param
reason a String describing the reason for the exception.

	super(reason);
    
public NotActiveException()
Constructor to create a new NotActiveException without a reason.

	super();
    
Methods Summary