class Puppet::HTTP::TooManyRedirects

An error if asked to follow too many redirects (such as HTTP 301). @api public

Public Class Methods

new(addr) click to toggle source
Calls superclass method Puppet::Error::new
   # File lib/puppet/http/errors.rb
37 def initialize(addr)
38   super(_("Too many HTTP redirections for %{addr}") % { addr: addr})
39 end