Exception: Mongo::Error::InvalidReplacementDocument
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::InvalidReplacementDocument
- Defined in:
- lib/mongo/error/invalid_replacement_document.rb
Overview
Exception raised if the object is not a valid replacement document.
Constant Summary collapse
- MESSAGE =
Deprecated.
The error message.
'Invalid replacement document provided'.freeze
Constants inherited from Mongo::Error
BAD_VALUE, CODE, CURSOR_NOT_FOUND, ERR, ERRMSG, ERROR, TRANSIENT_TRANSACTION_ERROR_LABEL, UNKNOWN_ERROR, UNKNOWN_TRANSACTION_COMMIT_RESULT_LABEL, WRITE_CONCERN_ERROR, WRITE_CONCERN_ERRORS, WRITE_ERRORS
Instance Attribute Summary
Attributes included from Notable
#connection_global_id, #generation, #service_id
Class Method Summary collapse
-
.message(key) ⇒ String
private
Construct the error message.
-
.warn(logger, key) ⇒ Object
private
Send and cache the warning.
Instance Method Summary collapse
-
#initialize(key: nil) ⇒ InvalidReplacementDocument
constructor
Instantiate the new exception.
Methods inherited from Mongo::Error
#change_stream_resumable?, #write_concern_error_label?, #write_concern_error_labels
Methods included from ChangeStreamResumable
Methods included from WriteRetryable
Methods included from Labelable
Methods included from Notable
#add_note, #add_notes, #notes, #to_s
Constructor Details
#initialize(key: nil) ⇒ InvalidReplacementDocument
Instantiate the new exception.
55 56 57 |
# File 'lib/mongo/error/invalid_replacement_document.rb', line 55 def initialize(key: nil) super(self.class.(key)) end |
Class Method Details
.message(key) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Construct the error message.
36 37 38 39 40 |
# File 'lib/mongo/error/invalid_replacement_document.rb', line 36 def self.(key) = "Invalid replacement document provided. Replacement documents " += "must not contain atomic modifiers. The \"#{key}\" key is invalid." end |
.warn(logger, key) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Send and cache the warning.
45 46 47 48 49 50 |
# File 'lib/mongo/error/invalid_replacement_document.rb', line 45 def self.warn(logger, key) @warned ||= begin logger.warn((key)) true end end |