class Puppet::Network::HTTP::Error::HTTPMethodNotAllowedError

Constants

CODE

Public Class Methods

new(message, issue_kind = Issues::RUNTIME_ERROR) click to toggle source
   # File lib/puppet/network/http/error.rb
51 def initialize(message, issue_kind = Issues::RUNTIME_ERROR)
52   super(_("Method Not Allowed: %{message}") % { message: message }, CODE, issue_kind)
53 end