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

ObjectStreamException

public abstract class ObjectStreamException extends IOException
Superclass of all exceptions specific to Object Stream classes.
author
unascribed
version
1.13, 12/19/03
since
JDK1.1

Fields Summary
Constructors Summary
protected ObjectStreamException(String classname)
Create an ObjectStreamException with the specified argument.

param
classname the detailed message for the exception

	super(classname);
    
protected ObjectStreamException()
Create an ObjectStreamException.

	super();
    
Methods Summary