Exception: Mongo::Error::UnsupportedCollation
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::UnsupportedCollation
- Defined in:
- lib/mongo/error/unsupported_collation.rb
Overview
Raised if a collation is specified for an operation but the server selected does not support collations.
Constant Summary collapse
- DEFAULT_MESSAGE =
The default error message describing that collations is not supported.
"Collations is not a supported feature of the server handling this operation. " + "Operation results may be unexpected."
- UNACKNOWLEDGED_WRITES_MESSAGE =
The error message describing that collations cannot be used when write concern is unacknowledged.
"A collation cannot be specified when using unacknowledged writes. " + "Either remove the collation option or use acknowledged writes (w >= 1)."
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(message = nil) ⇒ UnsupportedCollation
constructor
Create the new exception.
Constructor Details
#initialize(message = nil) ⇒ UnsupportedCollation
Create the new exception.
46 47 48 |
# File 'lib/mongo/error/unsupported_collation.rb', line 46 def initialize( = nil) super( || DEFAULT_MESSAGE) end |