Class BadRequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.tccc.kos.commons.util.dispatcher.exceptions.RequestException
com.tccc.kos.commons.util.dispatcher.exceptions.BadRequestException
- All Implemented Interfaces:
Serializable
Exception thrown when the web client/caller passes in invalid data.
The HTTP status for this exception is 400 BAD_REQUEST
.
- Since:
- 1.0
- Version:
- 2022-09-01
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBadRequestException
(String message) Constructs a new "bad request" exception with the specified message.BadRequestException
(String message, Throwable cause) Constructs a new "bad request" exception with the specified message and cause.BadRequestException
(Throwable cause) Constructs a new "bad request" exception with the specified cause. -
Method Summary
Methods inherited from class com.tccc.kos.commons.util.dispatcher.exceptions.RequestException
getStatus
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BadRequestException
Constructs a new "bad request" exception with the specified message.- Parameters:
message
- the detailed error message
-
BadRequestException
Constructs a new "bad request" exception with the specified cause.- Parameters:
cause
- the exception that caused this exception
-
BadRequestException
Constructs a new "bad request" exception with the specified message and cause.- Parameters:
message
- the detailed error messagecause
- the exception that caused this exception
-