Sha256: d1ac3e6b3521222126bb20844f4d0837d47da93616074fc32793077553bfff3d
Contents?: true
Size: 403 Bytes
Versions: 127
Compression:
Stored size: 403 Bytes
Contents
module Puppet::Rest class ResponseError < Puppet::Error attr_reader :response # Error thrown when request status is not OK. # @param [String] msg the error message # @param [Puppet::Rest::Response] response the response from the failed # request def initialize(msg, response = nil) super(msg) @response = response end end end
Version data entries
127 entries across 127 versions & 2 rubygems