Class: Mongo::Error::MissingResumeToken

Inherits:
Error
  • Object
show all
Defined in:
lib/mongo/error/missing_resume_token.rb

Overview

Raised if a change stream document is returned without a resume token.

Since:

  • 2.5.0

Constant Summary collapse

MESSAGE =

The error message.

Since:

  • 2.5.0

'Cannot provide resume functionality when the resume token is missing'

Instance Method Summary collapse

Constructor Details

#initializeMissingResumeToken

Create the new exception.

Examples:

Create the new exception.

Mongo::Error::MissingResumeToken.new

Since:

  • 2.5.0



34
35
36
# File 'lib/mongo/error/missing_resume_token.rb', line 34

def initialize
  super(MESSAGE)
end