Exception: Puppet::HTTP::TooManyRetryAfters

Inherits:
HTTPError show all
Defined in:
lib/puppet/http/errors.rb

Overview

An error if asked to retry (such as HTTP 503) too many times.

Instance Attribute Summary

Attributes inherited from Error

#original

Instance Method Summary collapse

Constructor Details

#initialize(addr) ⇒ TooManyRetryAfters

Returns a new instance of TooManyRetryAfters.



46
47
48
# File 'lib/puppet/http/errors.rb', line 46

def initialize(addr)
  super(_("Too many HTTP retries for %{addr}") % { addr: addr })
end