Codebase list ruby-maxmind-db / cebf9629-e73e-4d33-97a2-6f5e5321e9cb/upstream lib / maxmind / db / errors.rb
cebf9629-e73e-4d33-97a2-6f5e5321e9cb/upstream

Tree @cebf9629-e73e-4d33-97a2-6f5e5321e9cb/upstream (Download .tar.gz)

errors.rb @cebf9629-e73e-4d33-97a2-6f5e5321e9cb/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