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
# File 'lib/haveapi/client/exceptions.rb', line 7

def initialize(response)
  @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

Instance Method Details

#messageObject



11
12
13
# File 'lib/haveapi/client/exceptions.rb', line 11

def message
  "#{@response.action.name} failed: #{@response.message}"
end