java.io
Class WriteAbortedException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.io.IOException sample code for java.io.IOException definition code for java.io.IOException 
              extended by java.io.ObjectStreamException sample code for java.io.ObjectStreamException definition code for java.io.ObjectStreamException 
                  extended by java.io.WriteAbortedException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class WriteAbortedException
extends ObjectStreamException sample code for java.io.ObjectStreamException definition code for java.io.ObjectStreamException

Signals that one of the ObjectStreamExceptions was thrown during a write operation. Thrown during a read operation when one of the ObjectStreamExceptions was thrown during a write operation. The exception that terminated the write can be found in the detail field. The stream is reset to it's initial state and all references to objects already deserialized are discarded.

As of release 1.4, this exception has been retrofitted to conform to the general purpose exception-chaining mechanism. The "exception causing the abort" that is provided at construction time and accessed via the public detail sample code for java.io.WriteAbortedException.detail definition code for java.io.WriteAbortedException.detail field is now known as the cause, and may be accessed via the Throwable.getCause() sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() method, as well as the aforementioned "legacy field."

Since:
JDK1.1
See Also:
Serialized Form

Field Summary
 Exception sample code for java.lang.Exception definition code for java.lang.Exception detail sample code for java.io.WriteAbortedException.detail definition code for java.io.WriteAbortedException.detail
          Exception that was caught while writing the ObjectStream.
 
Constructor Summary
WriteAbortedException sample code for java.io.WriteAbortedException.WriteAbortedException(java.lang.String, java.lang.Exception) definition code for java.io.WriteAbortedException.WriteAbortedException(java.lang.String, java.lang.Exception) (String sample code for java.lang.String definition code for java.lang.String  s, Exception sample code for java.lang.Exception definition code for java.lang.Exception  ex)
          Constructs a WriteAbortedException with a string describing the exception and the exception causing the abort.
 
Method Summary
 Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable getCause sample code for java.io.WriteAbortedException.getCause() definition code for java.io.WriteAbortedException.getCause() ()
          Returns the exception that terminated the operation (the cause).
 String sample code for java.lang.String definition code for java.lang.String getMessage sample code for java.io.WriteAbortedException.getMessage() definition code for java.io.WriteAbortedException.getMessage() ()
          Produce the message and include the message from the nested exception, if there is one.
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Field Detail

detail sample code for java.io.WriteAbortedException.detail

public Exception sample code for java.lang.Exception definition code for java.lang.Exception  detail
Exception that was caught while writing the ObjectStream.

This field predates the general-purpose exception chaining facility. The Throwable.getCause() sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() method is now the preferred means of obtaining this information.

Constructor Detail

WriteAbortedException sample code for java.io.WriteAbortedException(java.lang.String, java.lang.Exception) definition code for java.io.WriteAbortedException(java.lang.String, java.lang.Exception)

public WriteAbortedException(String sample code for java.lang.String definition code for java.lang.String  s,
                             Exception sample code for java.lang.Exception definition code for java.lang.Exception  ex)
Constructs a WriteAbortedException with a string describing the exception and the exception causing the abort.

Parameters:
s - String describing the exception.
ex - Exception causing the abort.
Method Detail

getMessage sample code for java.io.WriteAbortedException.getMessage() definition code for java.io.WriteAbortedException.getMessage()

public String sample code for java.lang.String definition code for java.lang.String  getMessage()
Produce the message and include the message from the nested exception, if there is one.

Overrides:
getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the detail message string of this Throwable instance (which may be null).

getCause sample code for java.io.WriteAbortedException.getCause() definition code for java.io.WriteAbortedException.getCause()

public Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  getCause()
Returns the exception that terminated the operation (the cause).

Overrides:
getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the exception that terminated the operation (the cause), which may be null.
Since:
1.4