Class: Mongo::Error::UnexpectedResponse
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
Error
|
|
|
Instance Chain:
self,
Error
|
|
| Inherits: |
Error
|
| Defined in: | lib/mongo/error/unexpected_response.rb |
Overview
Raised if the response read from the socket does not match the latest query.
Class Method Summary
-
.new(expected_response_to, response_to) ⇒ UnexpectedResponse
constructor
Create the new exception.
Constructor Details
.new(expected_response_to, response_to) ⇒ UnexpectedResponse
Create the new exception.
# 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