java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.iu.IuNotFoundException
- All Implemented Interfaces:
Serializable
Thrown by an application or incoming request handler to represent a missing
resource or unrecoverable security error, i.e., penetration attempt.
Should be caught and handled as 404 NOT FOUND by an outbound web request boundary. May be handled by application-layer business logic; in the event of an unrecoverable security error, the application must log the attempt. Should not be thrown as the result of a server or downstream service error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.IuNotFoundException
(String message) Default constructor.IuNotFoundException
(String message, Throwable cause) Default constructor.IuNotFoundException
(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
-
IuNotFoundException
public IuNotFoundException()Default constructor. -
IuNotFoundException
Default constructor.- Parameters:
message
- message
-
IuNotFoundException
Default constructor.- Parameters:
cause
- cause
-
IuNotFoundException
Default constructor.- Parameters:
message
- messagecause
- cause
-