Exception: Mongo::Error::InvalidURI
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::InvalidURI
- Defined in:
- lib/mongo/error/invalid_uri.rb
Overview
Exception that is raised when trying to parse a URI that does not match the specification.
Constant Summary
Constants inherited from Mongo::Error
BAD_VALUE, CODE, CURSOR_NOT_FOUND, ERR, ERRMSG, ERROR, UNKNOWN_ERROR, WRITE_CONCERN_ERROR, WRITE_CONCERN_ERRORS, WRITE_ERRORS
Instance Method Summary collapse
-
#initialize(uri, details) ⇒ InvalidURI
constructor
Instantiate the new exception.
Constructor Details
#initialize(uri, details) ⇒ InvalidURI
Instantiate the new exception.
30 31 32 33 34 35 |
# File 'lib/mongo/error/invalid_uri.rb', line 30 def initialize(uri, details) super("Bad URI: #{uri}\n" + "#{details}\n" + "MongoDB URI must be in the following format: #{Mongo::URI::FORMAT}\n" + "Please see the following URL for more information: #{Mongo::URI::HELP}\n") end |