Class: Geoblacklight::FaradayMiddleware::RedirectLimitReached

Inherits:
Faraday::ClientError
  • Object
show all
Defined in:
lib/geoblacklight/faraday_middleware/follow_redirects.rb

Overview

Exception thrown when the maximum amount of requests is exceeded.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ RedirectLimitReached

Returns a new instance of RedirectLimitReached.



18
19
20
21
# File 'lib/geoblacklight/faraday_middleware/follow_redirects.rb', line 18

def initialize(response)
  super "too many redirects; last one to: #{response["location"]}"
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



16
17
18
# File 'lib/geoblacklight/faraday_middleware/follow_redirects.rb', line 16

def response
  @response
end