Class: Mongo::Error::InvalidMinPoolSize
- Inherits:
-
Error
- Object
- Error
- Mongo::Error::InvalidMinPoolSize
- Defined in:
- lib/mongo/error/invalid_min_pool_size.rb
Overview
Exception that is raised when trying to create a client with an invalid min_pool_size option.
Instance Method Summary collapse
-
#initialize(min, max) ⇒ InvalidMinPoolSize
constructor
Instantiate the new exception.
Constructor Details
#initialize(min, max) ⇒ InvalidMinPoolSize
Instantiate the new exception.
30 31 32 |
# File 'lib/mongo/error/invalid_min_pool_size.rb', line 30 def initialize(min, max) super("Invalid min pool size: #{min}. Please ensure that it is less than the max size: #{max}. ") end |