Exception: Delighted::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/delighted/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Error

Returns a new instance of Error.



5
6
7
# File 'lib/delighted/errors.rb', line 5

def initialize(response)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/delighted/errors.rb', line 3

def response
  @response
end

Instance Method Details

#to_sObject



9
10
11
# File 'lib/delighted/errors.rb', line 9

def to_s
  "#{@response.status_code}: #{@response.body}"
end