Codebase list ruby-maxmind-db / f740f1ad-c745-429d-8e2c-0133a0f4e553/upstream lib / maxmind / db / errors.rb
f740f1ad-c745-429d-8e2c-0133a0f4e553/upstream

Tree @f740f1ad-c745-429d-8e2c-0133a0f4e553/upstream (Download .tar.gz)

errors.rb @f740f1ad-c745-429d-8e2c-0133a0f4e553/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