Module iu.util
Package edu.iu

Class IuOutOfServiceException

All Implemented Interfaces:
Serializable

public class IuOutOfServiceException extends RuntimeException
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 Details

    • IuOutOfServiceException

      public IuOutOfServiceException()
      Default constructor.
    • IuOutOfServiceException

      public IuOutOfServiceException(String message)
      Default constructor.
      Parameters:
      message - message
    • IuOutOfServiceException

      public IuOutOfServiceException(Throwable cause)
      Default constructor.
      Parameters:
      cause - cause
    • IuOutOfServiceException

      public IuOutOfServiceException(String message, Throwable cause)
      Default constructor.
      Parameters:
      message - message
      cause - cause