Sha256: 39abc99dff8b5c6e89994de0c7f44130b9120f200052dac71198568e919030b5
Contents?: true
Size: 533 Bytes
Versions: 25
Compression:
Stored size: 533 Bytes
Contents
require 'timeout' module Geocoder class Error < StandardError end class ConfigurationError < Error end class OverQueryLimitError < Error end class ResponseParseError < Error attr_reader :response def initialize(response) @response = response end end class RequestDenied < Error end class InvalidRequest < Error end class InvalidApiKey < Error end class ServiceUnavailable < Error end class LookupTimeout < ::Timeout::Error end class NetworkError < Error end end
Version data entries
25 entries across 25 versions & 2 rubygems