Codebase list ruby-maxmind-db / 92da0f7d-8648-4337-82f2-8740a4cf01d5/upstream lib / maxmind / db / errors.rb
92da0f7d-8648-4337-82f2-8740a4cf01d5/upstream

Tree @92da0f7d-8648-4337-82f2-8740a4cf01d5/upstream (Download .tar.gz)

errors.rb @92da0f7d-8648-4337-82f2-8740a4cf01d5/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