Codebase list ruby-maxmind-db / c7ac6e5 lib / maxmind / db / errors.rb
c7ac6e5

Tree @c7ac6e5 (Download .tar.gz)

errors.rb @c7ac6e5raw · 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