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

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