Codebase list ruby-maxmind-db / 1dc0f99 lib / maxmind / db / errors.rb
1dc0f99

Tree @1dc0f99 (Download .tar.gz)

errors.rb @1dc0f99raw · 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