Exception: JsonApiClient::Errors::ServerError
- Defined in:
- lib/json_api_client/errors.rb
Direct Known Subclasses
BadGateway, GatewayTimeout, InternalServerError, RecordNotSaved, ServiceUnavailable, UnexpectedStatus
Instance Attribute Summary
Attributes inherited from ApiError
Instance Method Summary collapse
-
#initialize(env, msg = nil) ⇒ ServerError
constructor
A new instance of ServerError.
Constructor Details
#initialize(env, msg = nil) ⇒ ServerError
Returns a new instance of ServerError.
73 74 75 76 77 78 79 80 81 |
# File 'lib/json_api_client/errors.rb', line 73 def initialize(env, msg = nil) msg ||= begin status = env.status = ::Rack::Utils::HTTP_STATUS_CODES[status] "#{status} #{}" end super env, msg end |