Codebase list ruby-maxmind-db / 0a23ed46-9698-4897-8b8e-06d0aeb22199/upstream lib / maxmind / db / errors.rb
0a23ed46-9698-4897-8b8e-06d0aeb22199/upstream

Tree @0a23ed46-9698-4897-8b8e-06d0aeb22199/upstream (Download .tar.gz)

errors.rb @0a23ed46-9698-4897-8b8e-06d0aeb22199/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