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
plyom_user-0.1.1 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.1.0 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.9 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.8 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.7 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.6 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.5 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.4 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.3 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
plyom_user-0.0.2 vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb
httparty-0.12.0 lib/httparty/exceptions.rb
httparty-0.11.0 lib/httparty/exceptions.rb
httparty-0.10.2 lib/httparty/exceptions.rb
httparty-0.10.1 lib/httparty/exceptions.rb
httparty-0.10.0 lib/httparty/exceptions.rb
dkastner-httparty-0.9.0 lib/httparty/exceptions.rb
httparty-0.9.0 lib/httparty/exceptions.rb
httparty-0.8.3 lib/httparty/exceptions.rb
httparty-0.8.2 lib/httparty/exceptions.rb
nutshell-crm-0.0.6.alpha vendor/bundle/gems/httparty-0.8.1/lib/httparty/exceptions.rb