Codebase list ruby-maxmind-db / e888190c-672f-4962-b360-3b8042eefd3a/upstream lib / maxmind / db / errors.rb
e888190c-672f-4962-b360-3b8042eefd3a/upstream

Tree @e888190c-672f-4962-b360-3b8042eefd3a/upstream (Download .tar.gz)

errors.rb @e888190c-672f-4962-b360-3b8042eefd3a/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