Sha256: 9cb0753bdfd379b903b16c8af599a64ba2e58cb74a98cd2c4e73b9e9f84434b6

Contents?: true

Size: 388 Bytes

Versions: 1

Compression:

Stored size: 388 Bytes

Contents

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

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
geocoder-1.2.7 lib/geocoder/exceptions.rb