class Geoblacklight::FaradayMiddleware::RedirectLimitReached

Exception thrown when the maximum amount of requests is exceeded.

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/geoblacklight/faraday_middleware/follow_redirects.rb, line 20
def initialize(response)
  super("too many redirects; last one to: #{response["location"]}")
  @response = response
end