| |
|
| 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: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ |
Method Summary | |
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. |
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 |
getCause | public Throwable getCause()(Code) | | Returns the cause that caused this exception, if any.
|
getMessage | public String getMessage()(Code) | | Returns the message associated with this exception, if any.
|
toString | public String toString()(Code) | | Return a formatted string that describes this exception.
|
|
|
|