Codebase list ruby-maxmind-db / ed286bf4-52df-4389-b848-bd25759ecebc/upstream lib / maxmind / db / errors.rb
ed286bf4-52df-4389-b848-bd25759ecebc/upstream

Tree @ed286bf4-52df-4389-b848-bd25759ecebc/upstream (Download .tar.gz)

errors.rb @ed286bf4-52df-4389-b848-bd25759ecebc/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