ObjectStreamExceptionpublic 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. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
protected ObjectStreamException()Constructs a new {@code ObjectStreamException} with its stack trace
filled in.
super();
| protected ObjectStreamException(String detailMessage)Constructs a new {@code ObjectStreamException} with its stack trace and
detail message filled in.
super(detailMessage);
|
|