Exception: Mongo::Error::InvalidApplicationName
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::InvalidApplicationName
- Defined in:
- lib/mongo/error/invalid_application_name.rb
Overview
This exception is raised when the metadata document sent to the server
at the time of a connection handshake is invalid.
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(app_name, max_size) ⇒ InvalidApplicationName
constructor
Instantiate the new exception.
Constructor Details
#initialize(app_name, max_size) ⇒ InvalidApplicationName
Instantiate the new exception.
33 34 35 |
# File 'lib/mongo/error/invalid_application_name.rb', line 33 def initialize(app_name, max_size) super("The provided application name '#{app_name}' cannot exceed #{max_size} bytes.") end |