Codebase list ruby-maxmind-db / 566434bb-88a1-428a-8541-5fb9731ee271/upstream lib / maxmind / db / errors.rb
566434bb-88a1-428a-8541-5fb9731ee271/upstream

Tree @566434bb-88a1-428a-8541-5fb9731ee271/upstream (Download .tar.gz)

errors.rb @566434bb-88a1-428a-8541-5fb9731ee271/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