An error that may also include the YAML response from the server
Creates a new exception.
[Source]
# File lib/eventful/api.rb, line 194 def initialize(response) super @response = response end
The error string returned by the API call.
# File lib/eventful/api.rb, line 200 def to_s "#{@response['string']}: #{@response['description']}" end
[Validate]