FileDocCategorySizeDatePackage
ObjectStreamException.javaAPI DocAndroid 1.5 API1925Wed May 06 22:41:04 BST 2009java.io

ObjectStreamException

public abstract class ObjectStreamException extends IOException
Signals some sort of problem during either serialization or deserialization of objects. This is actually the superclass of several other, more specific exception classes.
see
InvalidObjectException
see
NotActiveException
see
NotSerializableException
see
OptionalDataException
see
StreamCorruptedException
see
WriteAbortedException
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
protected ObjectStreamException()
Constructs a new {@code ObjectStreamException} with its stack trace filled in.

since
Android 1.0


                        
      
        super();
    
protected ObjectStreamException(String detailMessage)
Constructs a new {@code ObjectStreamException} with its stack trace and detail message filled in.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary