java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.iu.IuBadRequestException
- All Implemented Interfaces:
Serializable
Thrown by an application or incoming request handler to represent an invalid
incoming requests.
Should be caught and handled as 400 BAD REUEST by an outbound web request boundary. Should not be handled by application-layer business logic.Should not be thrown as the result of a server or downstream service error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.IuBadRequestException
(String message) Default constructor.IuBadRequestException
(String message, Throwable cause) Default constructor.IuBadRequestException
(Throwable cause) Default constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IuBadRequestException
public IuBadRequestException()Default constructor. -
IuBadRequestException
Default constructor.- Parameters:
message
- message
-
IuBadRequestException
Default constructor.- Parameters:
cause
- cause
-
IuBadRequestException
Default constructor.- Parameters:
message
- messagecause
- cause
-