java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.iu.IuOutOfServiceException
- All Implemented Interfaces:
Serializable
Thrown by an application or incoming request handler to represent a session
activation failure due to a planned downstream service or
application outage.
Should be caught and handled as 503 SERVICE UNVAILABLE 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.IuOutOfServiceException
(String message) Default constructor.IuOutOfServiceException
(String message, Throwable cause) Default constructor.IuOutOfServiceException
(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
-
IuOutOfServiceException
public IuOutOfServiceException()Default constructor. -
IuOutOfServiceException
Default constructor.- Parameters:
message
- message
-
IuOutOfServiceException
Default constructor.- Parameters:
cause
- cause
-
IuOutOfServiceException
Default constructor.- Parameters:
message
- messagecause
- cause
-