Sha256: d123f298f66fa90604164fef77a10eb5842736d3fa3300a7bfe15bf68d5c57db
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
require "http/exceptions/version" require "http/exceptions/configuration" require "http/exceptions/http_exception" module Http module Exceptions EXCEPTIONS = [ SocketError, Errno::ETIMEDOUT, (Net.const_defined?(:ReadTimeout) ? Net::ReadTimeout : EOFError), (Net.const_defined?(:OpenTimeout) ? Net::OpenTimeout : EOFError), Net::ProtocolError, Errno::ECONNREFUSED, Errno::EHOSTDOWN, Errno::ECONNRESET, Errno::ENETUNREACH, Errno::EHOSTUNREACH, Errno::ECONNABORTED, OpenSSL::SSL::SSLError, EOFError, ].freeze def self.wrap_exception begin yield rescue *configuration.exceptions_to_convert => e raise HttpException.new original_exception: e end end def self.check_response!(res) raise HttpException.new(response: res) unless (200...300).include?(res.code.to_i) res end def self.wrap_and_check wrap_exception do check_response! yield end end # Call this method to modify defaults in your initializers. # # @example # Http::Exceptions.configure do |config| # config.exceptions_to_convert = [Net::ProtocolError] # config.exceptions_to_convert << EOFError # end def self.configure yield(configuration) self end # The configuration object. # @see Http::Exceptions.configure def self.configuration @configuration ||= Configuration.new end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
http-exceptions-0.1.1 | lib/http/exceptions.rb |