Exception: JsonApiClient::Errors::UnexpectedStatus

Inherits:
ServerError show all
Defined in:
lib/json_api_client/errors.rb

Instance Attribute Summary collapse

Attributes inherited from ApiError

#env

Instance Method Summary collapse

Constructor Details

#initialize(code, uri) ⇒ UnexpectedStatus

Returns a new instance of UnexpectedStatus.



77
78
79
80
81
82
83
# File 'lib/json_api_client/errors.rb', line 77

def initialize(code, uri)
  @code = code
  @uri = uri

  msg = "Unexpected response status: #{code} from: #{uri.to_s}"
  super nil, msg
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



76
77
78
# File 'lib/json_api_client/errors.rb', line 76

def code
  @code
end

#uriObject (readonly)

Returns the value of attribute uri.



76
77
78
# File 'lib/json_api_client/errors.rb', line 76

def uri
  @uri
end