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
36 def initialize(message, issue_kind = Issues::RUNTIME_ERROR)
37   super(_("Not Authorized: %{message}") % { message: message }, CODE, issue_kind)
38 end