|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ObjectStreamException | |
java.io |
Uses of ObjectStreamException in java.io |
Subclasses of ObjectStreamException in java.io | |
class |
InvalidClassException
A problem was found with the class of one of the objects being serialized or deserialized. |
class |
InvalidObjectException
The object graph loaded (deserialized) can be validated by a collection of validator objects. |
class |
NotActiveException
Some methods in ObjectInputStream and ObjectOutputStream can only be called from a nested call to readObject() or writeObject(). |
class |
NotSerializableException
When an implementation of ObjectOutput.writeObject() is passed an object that is not serializable, it will throw this type of exception. |
class |
OptionalDataException
When readObject() encounters primitive types (int, char, etc) instead of an object instance in the input stream, this type of exception will be thrown. |
class |
StreamCorruptedException
When readObject() cannot read an object from the input stream due to missing information (cyclic reference that doesn't match previous instance or missing class descriptor for instance to be loaded) this type of exception is thrown. |
class |
WriteAbortedException
This type of exception is thrown by readObject() when it detects an exception marker in the input stream. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |