Package org.apache.coyote
Class BadRequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.coyote.BadRequestException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- ClientAbortException
Extend IOException to identify it as being caused by a bad request from a remote client.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct a new BadRequestException with no other information.BadRequestException(String message) Construct a new BadRequestException for the specified message.BadRequestException(String message, Throwable throwable) Construct a new BadRequestException for the specified message and throwable.BadRequestException(Throwable throwable) Construct a new BadRequestException 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- 
BadRequestExceptionpublic BadRequestException()Construct a new BadRequestException with no other information.
- 
BadRequestExceptionConstruct a new BadRequestException for the specified message.- Parameters:
- message- Message describing this exception
 
- 
BadRequestExceptionConstruct a new BadRequestException for the specified throwable.- Parameters:
- throwable- Throwable that caused this exception
 
- 
BadRequestExceptionConstruct a new BadRequestException for the specified message and throwable.- Parameters:
- message- Message describing this exception
- throwable- Throwable that caused this exception
 
 
-