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

NotActiveException

public class NotActiveException extends ObjectStreamException
Thrown when serialization or deserialization is not active.
author
unascribed
version
1.18, 11/17/05
since
JDK1.1

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