Method: Mongo::Error::MaxMessageSize#initialize
- Defined in:
- lib/mongo/error/max_message_size.rb
#initialize(max_size = nil) ⇒ MaxMessageSize
Instantiate the new exception.
40 41 42 |
# File 'lib/mongo/error/max_message_size.rb', line 40 def initialize(max_size = nil) super(max_size ? MESSAGE + " The max is #{max_size}." : MESSAGE) end |