Class ServiceUnavailableException

All Implemented Interfaces:
Serializable, Response

public class ServiceUnavailableException extends RetryableException
An exception that is thrown during an operation on a resource when the server is temporarily unable to handle the request.
See Also:
  • Constructor Details

    • ServiceUnavailableException

      public ServiceUnavailableException()
      Constructs a new exception with null as its detail message.
    • ServiceUnavailableException

      public ServiceUnavailableException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - The detail message.
    • ServiceUnavailableException

      public ServiceUnavailableException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message.
      cause - The exception which caused this exception to be thrown.
    • ServiceUnavailableException

      public ServiceUnavailableException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The exception which caused this exception to be thrown.