FileDocCategorySizeDatePackage
StreamCorruptedException.javaAPI DocAndroid 1.5 API1887Wed May 06 22:41:04 BST 2009java.io

StreamCorruptedException

public class StreamCorruptedException extends ObjectStreamException
Signals that the {@link ObjectInputStream#readObject()} method could not read an object due to missing information (for example, a cyclic reference that doesn't match a previous instance, or a missing class descriptor for the object to be loaded).
see
ObjectInputStream
see
OptionalDataException
since
Android 1.0

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

since
Android 1.0


                        
      
        super();
    
public StreamCorruptedException(String detailMessage)
Constructs a new {@code StreamCorruptedException} 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