Package org.apache.catalina.connector
Class ClientAbortException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.coyote.BadRequestException
org.apache.catalina.connector.ClientAbortException
- All Implemented Interfaces:
- Serializable
Extend IOException to identify it as being caused by an abort of a request by a remote client.
- Author:
- Glenn L. Nielsen
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct a new ClientAbortException with no other information.ClientAbortException(String message) Construct a new ClientAbortException for the specified message.ClientAbortException(String message, Throwable throwable) Construct a new ClientAbortException for the specified message and throwable.ClientAbortException(Throwable throwable) Construct a new ClientAbortException for the specified throwable.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ClientAbortExceptionpublic ClientAbortException()Construct a new ClientAbortException with no other information.
- 
ClientAbortExceptionConstruct a new ClientAbortException for the specified message.- Parameters:
- message- Message describing this exception
 
- 
ClientAbortExceptionConstruct a new ClientAbortException for the specified throwable.- Parameters:
- throwable- Throwable that caused this exception
 
- 
ClientAbortExceptionConstruct a new ClientAbortException for the specified message and throwable.- Parameters:
- message- Message describing this exception
- throwable- Throwable that caused this exception
 
 
-