123456789_123456789_123456789_123456789_123456789_

Class: Mongo::Error::UnexpectedResponse

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Error
Instance Chain:
self, Error
Inherits: Error
  • Object
Defined in: lib/mongo/error/unexpected_response.rb

Overview

Raised if the response read from the socket does not match the latest query.

Since:

  • 2.2.6

Class Method Summary

Constructor Details

.new(expected_response_to, response_to) ⇒ UnexpectedResponse

Create the new exception.

Examples:

Create the new exception.

Mongo::Error::UnexpectedResponse.new(expected_response_to, response_to)

Parameters:

  • expected_response_to (Integer)

    The last request id sent.

  • response_to (Integer)

    The actual response_to of the reply.

Since:

  • 2.2.6

[ GitHub ]

  
# File 'lib/mongo/error/unexpected_response.rb', line 32

def initialize(expected_response_to, response_to)
  super("Unexpected response. Got response for request ID #{response_to} " +
    "but expected response for request ID #{expected_response_to}")
end