Exception: Mongo::Error::NoServerAvailable
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::NoServerAvailable
- Defined in:
- lib/mongo/error/no_server_available.rb
Overview
Raised if there are no servers available matching the preference.
Constant Summary
Constants inherited from Mongo::Error
BAD_VALUE, CODE, ERR, ERRMSG, ERROR, UNKNOWN_ERROR, WRITE_CONCERN_ERROR, WRITE_CONCERN_ERRORS, WRITE_ERRORS
Instance Method Summary collapse
-
#initialize(server_selector) ⇒ NoServerAvailable
constructor
Instantiate the new exception.
Constructor Details
#initialize(server_selector) ⇒ NoServerAvailable
Instantiate the new exception.
32 33 34 |
# File 'lib/mongo/error/no_server_available.rb', line 32 def initialize(server_selector) super("No server is available matching preference: #{server_selector.inspect}") end |