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 Summary
ConstructorDescriptionConstruct 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 Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BadRequestException
public BadRequestException()Construct a new BadRequestException with no other information. -
BadRequestException
Construct a new BadRequestException for the specified message.- Parameters:
message
- Message describing this exception
-
BadRequestException
Construct a new BadRequestException for the specified throwable.- Parameters:
throwable
- Throwable that caused this exception
-
BadRequestException
-