class ProxyFetcher::Exceptions::MaximumRetriesReached

Exception for cases when HTTP client reached maximum count of retries trying to process HTTP request. Can occur when request failed by timeout multiple times.

Public Class Methods

new(*) click to toggle source

Initialize new exception

@return [MaximumRetriesReached]

Calls superclass method
# File lib/proxy_fetcher/exceptions.rb, line 68
def initialize(*)
  super("reached the maximum number of retries")
end