Codebase list ruby-maxmind-db / caa9325a-bcc0-4866-b7a3-0f57c07f2966/main lib / maxmind / db / errors.rb
caa9325a-bcc0-4866-b7a3-0f57c07f2966/main

Tree @caa9325a-bcc0-4866-b7a3-0f57c07f2966/main (Download .tar.gz)

errors.rb @caa9325a-bcc0-4866-b7a3-0f57c07f2966/mainraw · history · blame

1
2
3
4
5
6
7
8
module MaxMind # :nodoc:
  class DB
    # An InvalidDatabaseError means the {MaxMind
    # DB}[http://maxmind.github.io/MaxMind-DB/] file is corrupt or invalid.
    class InvalidDatabaseError < RuntimeError
    end
  end
end