Codebase list ruby-maxmind-db / 5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstream lib / maxmind / db / errors.rb
5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstream

Tree @5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstream (Download .tar.gz)

errors.rb @5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstreamraw · history · blame

# frozen_string_literal: true

module MaxMind
  class DB
    # An InvalidDatabaseError means the {MaxMind
    # DB}[https://maxmind.github.io/MaxMind-DB/] file is corrupt or invalid.
    class InvalidDatabaseError < RuntimeError
    end
  end
end