Exception: GarageClient::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/garage_client/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response = nil) ⇒ Error

Returns a new instance of Error.



5
6
7
# File 'lib/garage_client/error.rb', line 5

def initialize(response = nil)
  @response = response
end

Instance Attribute Details

#responseObject

Returns the value of attribute response.



3
4
5
# File 'lib/garage_client/error.rb', line 3

def response
  @response
end

Instance Method Details

#to_sObject



9
10
11
12
13
14
15
16
17
18
# File 'lib/garage_client/error.rb', line 9

def to_s
  case
  when String === response
    response
  when response.respond_to?(:[]) && response[:method].respond_to?(:upcase) && response[:url].is_a?(URI::HTTP)
    "#{response[:method].upcase} #{response[:url]} #{response[:status]}: #{response[:body]}"
  else
    super
  end
end