class Puppet::HTTP::TooManyRetryAfters
An error if asked to retry (such as HTTP
503) too many times. @api public
Public Class Methods
new(addr)
click to toggle source
Calls superclass method
Puppet::Error::new
# File lib/puppet/http/errors.rb 44 def initialize(addr) 45 super(_("Too many HTTP retries for %{addr}") % { addr: addr}) 46 end