Exception: Anilibria::Api::Exceptions::ResponseError

Inherits:
Base
  • Object
show all
Defined in:
lib/anilibria/api/exceptions/response_error.rb

Direct Known Subclasses

ApiError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil, response = nil) ⇒ ResponseError

Returns a new instance of ResponseError.



7
8
9
10
11
# File 'lib/anilibria/api/exceptions/response_error.rb', line 7

def initialize(msg = nil, response = nil)
  @response = response

  super(msg)
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



5
6
7
# File 'lib/anilibria/api/exceptions/response_error.rb', line 5

def response
  @response
end