Exception: IActionable::Error::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/iactionable/error.rb

Direct Known Subclasses

BadRequest, Internal, Unauthorized

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Error

Returns a new instance of Error.



6
7
8
9
# File 'lib/iactionable/error.rb', line 6

def initialize(response)
  @response = response
  super
end

Instance Attribute Details

#responseObject

Returns the value of attribute response.



4
5
6
# File 'lib/iactionable/error.rb', line 4

def response
  @response
end