Exception: HaveAPI::Client::ActionFailed

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

Direct Known Subclasses

ValidationError

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ActionFailed

Returns a new instance of ActionFailed.



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

def initialize(response)
  @response = response
end

Instance Method Details

#messageObject



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

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