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:
java.io.Serializable
- Direct Known Subclasses:
ClientAbortException
public class BadRequestException extends java.io.IOException
Extend IOException to identify it as being caused by a bad request from a remote client.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BadRequestException()
Construct a new BadRequestException with no other information.BadRequestException(java.lang.String message)
Construct a new BadRequestException for the specified message.BadRequestException(java.lang.String message, java.lang.Throwable throwable)
Construct a new BadRequestException for the specified message and throwable.BadRequestException(java.lang.Throwable throwable)
Construct a new BadRequestException for the specified throwable.
-
-
-
Constructor Detail
-
BadRequestException
public BadRequestException()
Construct a new BadRequestException with no other information.
-
BadRequestException
public BadRequestException(java.lang.String message)
Construct a new BadRequestException for the specified message.- Parameters:
message
- Message describing this exception
-
BadRequestException
public BadRequestException(java.lang.Throwable throwable)
Construct a new BadRequestException for the specified throwable.- Parameters:
throwable
- Throwable that caused this exception
-
BadRequestException
public BadRequestException(java.lang.String message, java.lang.Throwable throwable)
Construct a new BadRequestException for the specified message and throwable.- Parameters:
message
- Message describing this exceptionthrowable
- Throwable that caused this exception
-
-