Codebase list ruby-maxmind-db / 9ac1856e-61de-422c-971f-48161b6d5fc0/upstream lib / maxmind / db / errors.rb
9ac1856e-61de-422c-971f-48161b6d5fc0/upstream

Tree @9ac1856e-61de-422c-971f-48161b6d5fc0/upstream (Download .tar.gz)

errors.rb @9ac1856e-61de-422c-971f-48161b6d5fc0/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