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
36 def initialize(addr)
37   super(_("Too many HTTP redirections for %{addr}") % { addr: addr})
38 end