Sha256: 42b6c2b044619ecf05d843b56e8c2c3a3fefacd4436e11a99fa20ce5a479ea1a
Contents?: true
Size: 715 Bytes
Versions: 20
Compression:
Stored size: 715 Bytes
Contents
module Parliament # An error raised when an empty response is returned by Net::HTTP inside of Parliament::Request. # # @since 0.6.0 class NoContentResponseError < Parliament::NetworkError # @param [String] url the url that caused the Parliament::ClientError # @param [Net::HTTPResponse] response the Net:HTTPResponse that caused the Parliament::NoContentResponseError # # @example Creating a Parliament::NoContentResponseError # url = 'http://localhost:3030/foo/bar' # # response = Net::HTTP.get_response(URI(url)) # # raise Parliament::NoContentResponseError.new(url, response) if response.body.nil? def initialize(url, response) super end end end
Version data entries
20 entries across 20 versions & 1 rubygems