class ProxyFetcher::Exceptions::MaximumRedirectsReached

Exception for cases when HTTP client reached maximum count of redirects trying to process HTTP request.

Public Class Methods

new(*) click to toggle source

Initialize new exception

@return [MaximumRedirectsReached]

Calls superclass method
# File lib/proxy_fetcher/exceptions.rb, line 55
def initialize(*)
  super("maximum redirects reached")
end