class ApiClient::Exceptions::ServiceUnavailable

Exception for a Service Unavailable Response ( Status Code : 503 ). The server is currently unable to handle the request due to a temporary overloading or maintenance of the server.

Public Class Methods

initialize() click to toggle source

Initialize a new exception.

@return [ServiceUnavailable] a new exception.

# File lib/api-client/exceptions/service_unavailable.rb, line 7
def self.initialize
  super('Service Unavailable!')
end