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.



77
78
79
80
81
# File 'lib/contacts.rb', line 77

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.



73
74
75
# File 'lib/contacts.rb', line 73

def location
  @location
end

#responseObject (readonly)

Returns the value of attribute response.



73
74
75
# File 'lib/contacts.rb', line 73

def response
  @response
end