class Puppet::Network::HTTP::Error::HTTPNotAuthorizedError

Constants

CODE

Public Class Methods

new(message, issue_kind = Issues::RUNTIME_ERROR) click to toggle source
   # File lib/puppet/network/http/error.rb
37 def initialize(message, issue_kind = Issues::RUNTIME_ERROR)
38   super(_("Not Authorized: %{message}") % { message: message }, CODE, issue_kind)
39 end