java.io.WriteAbortedException (JDK 1.1)
This exception is thrown when reading a stream of data that is incomplete because an exception was thrown while it was being written. The detail field may contain the exception that terminated the output stream. The getMessage() method has been overridden to include the message of this detail exception, if any.
public classWriteAbortedExceptionextends ObjectStreamException { //Public ConstructorpublicWriteAbortedException(Strings, Exceptionex); //Public Instance Variablespublic Exceptiondetail; //Public Instance Methodspublic StringgetMessage(); //Overrides Throwable}
Hierarchy:
Object->Throwable(Serializable)->Exception->IOException->ObjectStreamException->WriteAbortedException