Class: Mongo::Error::MissingResumeToken
- Inherits:
-
Error
- Object
- 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'
Instance Method Summary collapse
-
#initialize ⇒ MissingResumeToken
constructor
Create the new exception.
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 |