Codebase list ruby-maxmind-db / c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/upstream lib / maxmind / db / errors.rb
c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/upstream

Tree @c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/upstream (Download .tar.gz)

errors.rb @c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/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