Save This Page
Home » apache-tomcat-6.0.16-src » org.apache » catalina » connector » [javadoc | source]
org.apache.catalina.connector
public final class: ClientAbortException [javadoc | source]
java.lang.Object
   java.lang.Throwable
      java.lang.Exception
         java.io.IOException
            org.apache.catalina.connector.ClientAbortException

All Implemented Interfaces:
    Serializable

Wrap an IOException identifying it as being caused by an abort of a request by a remote client.
Field Summary
protected  String message    The error message passed to our constructor (if any) 
protected  Throwable throwable    The underlying exception or error passed to our constructor (if any) 
Constructor:
 public ClientAbortException() 
 public ClientAbortException(String message) 
    Construct a new ClientAbortException for the specified message.
    Parameters:
    message - Message describing this exception
 public ClientAbortException(Throwable throwable) 
    Construct a new ClientAbortException for the specified throwable.
    Parameters:
    throwable - Throwable that caused this exception
 public ClientAbortException(String message,
    Throwable throwable) 
    Construct a new ClientAbortException for the specified message and throwable.
    Parameters:
    message - Message describing this exception
    throwable - Throwable that caused this exception
Method from org.apache.catalina.connector.ClientAbortException Summary:
getCause,   getMessage,   toString
Methods from java.lang.Throwable:
fillInStackTrace,   getCause,   getLocalizedMessage,   getMessage,   getStackTrace,   initCause,   printStackTrace,   printStackTrace,   printStackTrace,   setStackTrace,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.catalina.connector.ClientAbortException Detail:
 public Throwable getCause() 
    Returns the cause that caused this exception, if any.
 public String getMessage() 
    Returns the message associated with this exception, if any.
 public String toString() 
    Return a formatted string that describes this exception.