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

NotSerializableException

public class NotSerializableException extends ObjectStreamException
Thrown when an instance is required to have a Serializable interface. The serialization runtime or the class of the instance can throw this exception. The argument should be the name of the class.
author
unascribed
version
1.14, 12/19/03
since
JDK1.1

Fields Summary
Constructors Summary
public NotSerializableException(String classname)
Constructs a NotSerializableException object with message string.

param
classname Class of the instance being serialized/deserialized.

	super(classname);
    
public NotSerializableException()
Constructs a NotSerializableException object.

	super();
    
Methods Summary