Codebase list ruby-maxmind-db / 55bf23db-4c15-4811-bc90-a95ae72b2a04/upstream lib / maxmind / db / errors.rb
55bf23db-4c15-4811-bc90-a95ae72b2a04/upstream

Tree @55bf23db-4c15-4811-bc90-a95ae72b2a04/upstream (Download .tar.gz)

errors.rb @55bf23db-4c15-4811-bc90-a95ae72b2a04/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