Class BadRequestException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.hawaiiframework.exception.HawaiiException
-
- org.hawaiiframework.web.exception.HttpException
-
- org.hawaiiframework.web.exception.BadRequestException
-
- All Implemented Interfaces:
Serializable
public class BadRequestException extends HttpException
- Since:
- 2.0.0
- Author:
- Ivan Melotte
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BadRequestException()
Constructs a newBadRequestException
.BadRequestException(String message)
Constructs a newBadRequestException
with the supplied message.BadRequestException(String message, Throwable cause)
Constructs a newBadRequestException
with the supplied message andThrowable
.BadRequestException(Throwable cause)
Constructs a newBadRequestException
with the suppliedThrowable
.
-
Method Summary
-
Methods inherited from class org.hawaiiframework.web.exception.HttpException
getHttpStatus
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
BadRequestException
public BadRequestException()
Constructs a newBadRequestException
.
-
BadRequestException
public BadRequestException(String message)
Constructs a newBadRequestException
with the supplied message.
-
BadRequestException
public BadRequestException(String message, Throwable cause)
Constructs a newBadRequestException
with the supplied message andThrowable
.
-
-