Codebase list ruby-maxmind-db / d3292e84-3c37-4ab3-9d7d-5384e88ce84e/main lib / maxmind / db / errors.rb
d3292e84-3c37-4ab3-9d7d-5384e88ce84e/main

Tree @d3292e84-3c37-4ab3-9d7d-5384e88ce84e/main (Download .tar.gz)

errors.rb @d3292e84-3c37-4ab3-9d7d-5384e88ce84e/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