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, CURSOR_NOT_FOUND, 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 35 36 |
# File 'lib/mongo/error/no_server_available.rb', line 32 def initialize(server_selector) super("No server is available matching preference: #{server_selector.inspect} " + "using server_selection_timeout=#{server_selector.server_selection_timeout} " + "and local_threshold=#{server_selector.local_threshold}") end |