Codebase list ruby-maxmind-db / e7a5f25d-2f3b-498e-87f6-ed7ecbab9ade/main lib / maxmind / db / errors.rb
e7a5f25d-2f3b-498e-87f6-ed7ecbab9ade/main

Tree @e7a5f25d-2f3b-498e-87f6-ed7ecbab9ade/main (Download .tar.gz)

errors.rb @e7a5f25d-2f3b-498e-87f6-ed7ecbab9ade/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