Codebase list ruby-maxmind-db / 2b88e4ce-7359-4474-8143-ed0548e4b940/upstream lib / maxmind / db / errors.rb
2b88e4ce-7359-4474-8143-ed0548e4b940/upstream

Tree @2b88e4ce-7359-4474-8143-ed0548e4b940/upstream (Download .tar.gz)

errors.rb @2b88e4ce-7359-4474-8143-ed0548e4b940/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