Codebase list ruby-maxmind-db / 3cabdc20-fb85-48da-a4f5-02e7d510165c/main lib / maxmind / db / errors.rb
3cabdc20-fb85-48da-a4f5-02e7d510165c/main

Tree @3cabdc20-fb85-48da-a4f5-02e7d510165c/main (Download .tar.gz)

errors.rb @3cabdc20-fb85-48da-a4f5-02e7d510165c/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