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
50 def initialize(message, issue_kind = Issues::RUNTIME_ERROR)
51   super(_("Method Not Allowed: %{message}") % { message: message }, CODE, issue_kind)
52 end