Codebase list ruby-maxmind-db / ed286bf4-52df-4389-b848-bd25759ecebc/main lib / maxmind / db / errors.rb
ed286bf4-52df-4389-b848-bd25759ecebc/main

Tree @ed286bf4-52df-4389-b848-bd25759ecebc/main (Download .tar.gz)

errors.rb @ed286bf4-52df-4389-b848-bd25759ecebc/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