Codebase list ruby-maxmind-db / 9ac1856e-61de-422c-971f-48161b6d5fc0/main lib / maxmind / db / errors.rb
9ac1856e-61de-422c-971f-48161b6d5fc0/main

Tree @9ac1856e-61de-422c-971f-48161b6d5fc0/main (Download .tar.gz)

errors.rb @9ac1856e-61de-422c-971f-48161b6d5fc0/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