Exception: HaveAPI::Client::ActionFailed

Inherits:
StandardError
  • Object
show all
Defined in:
lib/haveapi/client/exceptions.rb

Direct Known Subclasses

ValidationError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ActionFailed

Returns a new instance of ActionFailed.



7
8
9
10
11
# File 'lib/haveapi/client/exceptions.rb', line 7

def initialize(response)
  super("#{response.action.name} failed: #{response.message}")

  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



5
6
7
# File 'lib/haveapi/client/exceptions.rb', line 5

def response
  @response
end