Codebase list ruby-maxmind-db / 1a2ce19d-d862-418e-ba45-e7bbf9861aea/upstream lib / maxmind / db / errors.rb
1a2ce19d-d862-418e-ba45-e7bbf9861aea/upstream

Tree @1a2ce19d-d862-418e-ba45-e7bbf9861aea/upstream (Download .tar.gz)

errors.rb @1a2ce19d-d862-418e-ba45-e7bbf9861aea/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