123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::InvalidMinPoolSize

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Error
Instance Chain:
self, Error
Inherits: Error
  • Object
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.

Since:

  • 2.4.2

Class Method Summary

Constructor Details

.new(min, max) ⇒ InvalidMinPoolSize

Instantiate the new exception.

Examples:

Instantiate the exception.

Mongo::Error::InvalidMinPoolSize.new(10, 5)

Since:

  • 2.4.2

[ GitHub ]

  
# 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