Exception: Mongo::Error::MissingResumeToken
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::MissingResumeToken
- Defined in:
- lib/mongo/error/missing_resume_token.rb
Overview
Raised if a change stream document is returned without a resume token.
Constant Summary collapse
- MESSAGE =
The error message.
'Cannot provide resume functionality when the resume token is missing'.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 Method Summary collapse
-
#initialize ⇒ MissingResumeToken
constructor
Create the new exception.
Methods inherited from Mongo::Error
#change_stream_resumable?, #label?, #labels
Constructor Details
#initialize ⇒ MissingResumeToken
Create the new exception.
34 35 36 |
# File 'lib/mongo/error/missing_resume_token.rb', line 34 def initialize super(MESSAGE) end |