Exception: Contacts::TooManyRedirects

Inherits:
Error
  • Object
show all
Defined in:
lib/contacts.rb

Constant Summary collapse

MAX_REDIRECTS =
2

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ TooManyRedirects

Returns a new instance of TooManyRedirects.



39
40
41
42
43
# File 'lib/contacts.rb', line 39

def initialize(response)
  @response = response
  @location = @response['Location']
  super "exceeded maximum of #{MAX_REDIRECTS} redirects (Location: #{location})"
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



35
36
37
# File 'lib/contacts.rb', line 35

def location
  @location
end

#responseObject (readonly)

Returns the value of attribute response.



35
36
37
# File 'lib/contacts.rb', line 35

def response
  @response
end