WriteAbortedExceptionNameWriteAbortedExceptionSynopsis
DescriptionA WriteAbortedException is thrown during object deserialization when the stream of data is incomplete because an exception was thrown while it was being written. Thus, WriteAbortedException represents an exception that was thrown during object serialization and serialized into the stream. Class Summary
public class java.io.WriteAbortedException extends java.io.ObjectStreamException { // Variables public Exception detail; // Constructors public WriteAbortedException(String s, Exception ex); // Instance Methods public String getMessage(); } Variablesdetailpublic Exception detail
ConstructorsWriteAbortedExceptionpublic WriteAbortedException(String s, Exception ex)
Instance MethodsgetMessagepublic String getMessage()
Inherited Methods
See AlsoException, ObjectStreamException, Throwable |
|