Exception: Contacts::TooManyRedirects
- Defined in:
- lib/contacts.rb
Constant Summary collapse
- MAX_REDIRECTS =
2
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ TooManyRedirects
constructor
A new instance of TooManyRedirects.
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
#location ⇒ Object (readonly)
Returns the value of attribute location.
35 36 37 |
# File 'lib/contacts.rb', line 35 def location @location end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
35 36 37 |
# File 'lib/contacts.rb', line 35 def response @response end |