org.apache.catalina.connector
Class ClientAbortException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.io.IOException
|
+--org.apache.catalina.connector.ClientAbortException
- All Implemented Interfaces:
- java.io.Serializable
- public final class ClientAbortException
- extends java.io.IOException
Wrap an IOException identifying it as being caused by an abort
of a request by a remote client.
- Version:
- $Revision: 466595 $ $Date: 2006-10-21 23:24:41 +0100 (Sat, 21 Oct 2006) $
- Author:
- Glenn L. Nielsen
- See Also:
- Serialized Form
Field Summary |
protected java.lang.String |
message
The error message passed to our constructor (if any) |
protected java.lang.Throwable |
throwable
The underlying exception or error passed to our constructor (if any) |
Constructor Summary |
ClientAbortException()
Construct a new ClientAbortException with no other information. |
ClientAbortException(java.lang.String message)
Construct a new ClientAbortException for the specified message. |
ClientAbortException(java.lang.String message,
java.lang.Throwable throwable)
Construct a new ClientAbortException for the specified message
and throwable. |
ClientAbortException(java.lang.Throwable throwable)
Construct a new ClientAbortException for the specified throwable. |
Method Summary |
java.lang.String |
getMessage()
Returns the message associated with this exception, if any. |
java.lang.Throwable |
getThrowable()
Returns the throwable that caused this exception, if any. |
java.lang.String |
toString()
Return a formatted string that describes this exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
message
protected java.lang.String message
- The error message passed to our constructor (if any)
throwable
protected java.lang.Throwable throwable
- The underlying exception or error passed to our constructor (if any)
ClientAbortException
public ClientAbortException()
- Construct a new ClientAbortException with no other information.
ClientAbortException
public ClientAbortException(java.lang.String message)
- Construct a new ClientAbortException for the specified message.
- Parameters:
message
- Message describing this exception
ClientAbortException
public ClientAbortException(java.lang.Throwable throwable)
- Construct a new ClientAbortException for the specified throwable.
- Parameters:
throwable
- Throwable that caused this exception
ClientAbortException
public ClientAbortException(java.lang.String message,
java.lang.Throwable throwable)
- Construct a new ClientAbortException for the specified message
and throwable.
- Parameters:
message
- Message describing this exceptionthrowable
- Throwable that caused this exception
getMessage
public java.lang.String getMessage()
- Returns the message associated with this exception, if any.
- Overrides:
getMessage
in class java.lang.Throwable
getThrowable
public java.lang.Throwable getThrowable()
- Returns the throwable that caused this exception, if any.
toString
public java.lang.String toString()
- Return a formatted string that describes this exception.
- Overrides:
toString
in class java.lang.Throwable
Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.