Exception: WargamingApi::Error::ResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- WargamingApi::Error::ResponseError
- Defined in:
- lib/wargaming_api/error/response_error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ ResponseError
constructor
A new instance of ResponseError.
Constructor Details
#initialize(response) ⇒ ResponseError
Returns a new instance of ResponseError.
4 5 6 7 |
# File 'lib/wargaming_api/error/response_error.rb', line 4 def initialize(response) @response = response super(response['error']['message']) end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
2 3 4 |
# File 'lib/wargaming_api/error/response_error.rb', line 2 def response @response end |