Codebase list ruby-maxmind-db / 456a38ce-983e-4a01-95e7-0077833a7846/main lib / maxmind / db / errors.rb
456a38ce-983e-4a01-95e7-0077833a7846/main

Tree @456a38ce-983e-4a01-95e7-0077833a7846/main (Download .tar.gz)

errors.rb @456a38ce-983e-4a01-95e7-0077833a7846/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