| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException org.apache.catalina.connector.ClientAbortException
ClientAbortException | final public class ClientAbortException extends IOException (Code) | | Wrap an IOException identifying it as being caused by an abort
of a request by a remote client.
author: Glenn L. Nielsen version: $Revision: 1.2 $ $Date: 2004/02/27 14:58:41 $ |
Method Summary | |
public String | getMessage() Returns the message associated with this exception, if any. | public Throwable | getThrowable() Returns the throwable that caused this exception, if any. | public String | toString() Return a formatted string that describes this exception. |
message | protected String message(Code) | | The error message passed to our constructor (if any)
|
throwable | protected Throwable throwable(Code) | | The underlying exception or error passed to our constructor (if any)
|
ClientAbortException | public ClientAbortException()(Code) | | Construct a new ClientAbortException with no other information.
|
ClientAbortException | public ClientAbortException(String message)(Code) | | Construct a new ClientAbortException for the specified message.
Parameters: message - Message describing this exception |
ClientAbortException | public ClientAbortException(Throwable throwable)(Code) | | Construct a new ClientAbortException for the specified throwable.
Parameters: throwable - Throwable that caused this exception |
ClientAbortException | public ClientAbortException(String message, Throwable throwable)(Code) | | Construct a new ClientAbortException for the specified message
and throwable.
Parameters: message - Message describing this exception Parameters: throwable - Throwable that caused this exception |
getMessage | public String getMessage()(Code) | | Returns the message associated with this exception, if any.
|
getThrowable | public Throwable getThrowable()(Code) | | Returns the throwable that caused this exception, if any.
|
toString | public String toString()(Code) | | Return a formatted string that describes this exception.
|
|
|
|