Codebase list ruby-maxmind-db / 6e8e6435-cbef-495b-adfc-6369b1c3f41e/main lib / maxmind / db / errors.rb
6e8e6435-cbef-495b-adfc-6369b1c3f41e/main

Tree @6e8e6435-cbef-495b-adfc-6369b1c3f41e/main (Download .tar.gz)

errors.rb @6e8e6435-cbef-495b-adfc-6369b1c3f41e/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