Exception: Mongo::Error::InvalidUpdateDocument
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::InvalidUpdateDocument
- Defined in:
- lib/mongo/error/invalid_update_document.rb
Overview
Exception raised if the object is not a valid update document.
Constant Summary collapse
- MESSAGE =
Deprecated.
The error message.
'Invalid update 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) ⇒ InvalidUpdateDocument
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) ⇒ InvalidUpdateDocument
Instantiate the new exception.
57 58 59 |
# File 'lib/mongo/error/invalid_update_document.rb', line 57 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.
38 39 40 41 42 |
# File 'lib/mongo/error/invalid_update_document.rb', line 38 def self.(key) = "Invalid update document provided. Updates documents must only " += "contain only 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.
47 48 49 50 51 52 |
# File 'lib/mongo/error/invalid_update_document.rb', line 47 def self.warn(logger, key) @warned ||= begin logger.warn((key)) true end end |