Sha256: a3a8ad54cf59868d58b6728b4aa3556eb5fa24add518f7a8acedc312a18065e8

Contents?: true

Size: 963 Bytes

Versions: 65

Compression:

Stored size: 963 Bytes

Contents

module HTTParty
  # Exception raised when you attempt to set a non-existant format
  class UnsupportedFormat < StandardError; end

  # Exception raised when using a URI scheme other than HTTP or HTTPS
  class UnsupportedURIScheme < StandardError; end

  # @abstract Exceptions which inherit from ResponseError contain the Net::HTTP
  # response object accessible via the {#response} method.
  class ResponseError < StandardError
    # Returns the response of the last request
    # @return [Net::HTTPResponse] A subclass of Net::HTTPResponse, e.g.
    # Net::HTTPOK
    attr_reader :response

    # Instantiate an instance of ResponseError with a Net::HTTPResponse object
    # @param [Net::HTTPResponse]
    def initialize(response)
      @response = response
    end
  end

  # Exception that is raised when request has redirected too many times.
  # Calling {#response} returns the Net:HTTP response object.
  class RedirectionTooDeep < ResponseError; end
end

Version data entries

65 entries across 65 versions & 8 rubygems

Version Path
jugend-httparty-0.5.2.2 lib/httparty/exceptions.rb
jugend-httparty-0.5.2.1 lib/httparty/exceptions.rb
jugend-httparty-0.5.3.4 lib/httparty/exceptions.rb
httparty-0.5.2 lib/httparty/exceptions.rb
httparty-0.5.1 lib/httparty/exceptions.rb