Codebase list ruby-maxmind-db / d3292e84-3c37-4ab3-9d7d-5384e88ce84e/upstream lib / maxmind / db / errors.rb
d3292e84-3c37-4ab3-9d7d-5384e88ce84e/upstream

Tree @d3292e84-3c37-4ab3-9d7d-5384e88ce84e/upstream (Download .tar.gz)

errors.rb @d3292e84-3c37-4ab3-9d7d-5384e88ce84e/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