Exception: ThreeScale::API::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/3scale/api/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response, message = response.to_s) ⇒ ResponseError

Returns a new instance of ResponseError.



6
7
8
9
# File 'lib/3scale/api/errors.rb', line 6

def initialize(response, message = response.to_s)
  super(message)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/3scale/api/errors.rb', line 4

def response
  @response
end