Codebase list ruby-maxmind-db / 27e7e6bb-84c5-4e6f-8592-01c1af5e7d2c/main lib / maxmind / db / errors.rb
27e7e6bb-84c5-4e6f-8592-01c1af5e7d2c/main

Tree @27e7e6bb-84c5-4e6f-8592-01c1af5e7d2c/main (Download .tar.gz)

errors.rb @27e7e6bb-84c5-4e6f-8592-01c1af5e7d2c/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