Exception: Puppet::HTTP::TooManyRetryAfters
- 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
Instance Method Summary collapse
-
#initialize(addr) ⇒ TooManyRetryAfters
constructor
A new instance of TooManyRetryAfters.
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 |