Codebase list ruby-maxmind-db / f1313f2 lib / maxmind / db / errors.rb
f1313f2

Tree @f1313f2 (Download .tar.gz)

errors.rb @f1313f2

f1313f2
 
 
b9e8fb2
 
f1313f2
b9e8fb2
 
 
 
# 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