java.io.NotSerializableException (JDK 1.1)
This exception signals that an object could not be serialized. It is thrown when serialization is attempted on an instance of a class that does not implement the Serializable interface. Note that it is also thrown when an attempt is made to serialize a Serializable object that refers to (or "contains") an object that is not Serializable.
A subclass of a class that is Serializable can prevent itself from being serialized by throwing this exception from its writeObject() and/or readObject() methods.
public classNotSerializableExceptionextends ObjectStreamException { //Public ConstructorspublicNotSerializableException(Stringclassname); publicNotSerializableException(); }
Hierarchy:
Object->Throwable(Serializable)->Exception->IOException->ObjectStreamException->NotSerializableException