Exception: Mongo::Error::InvalidBulkOperation
- Inherits:
-
Mongo::Error
- Object
- StandardError
- Mongo::Error
- Mongo::Error::InvalidBulkOperation
- Defined in:
- lib/mongo/error/invalid_bulk_operation.rb
Overview
Exception raised if an non-existent operation type is used.
Constant Summary
Constants inherited from Mongo::Error
BAD_VALUE, CODE, CURSOR_NOT_FOUND, ERR, ERRMSG, ERROR, UNKNOWN_ERROR, WRITE_CONCERN_ERROR, WRITE_CONCERN_ERRORS, WRITE_ERRORS
Instance Method Summary collapse
-
#initialize(type, operation) ⇒ InvalidBulkOperation
constructor
Instantiate the new exception.
Constructor Details
#initialize(type, operation) ⇒ InvalidBulkOperation
Instantiate the new exception.
32 33 34 |
# File 'lib/mongo/error/invalid_bulk_operation.rb', line 32 def initialize(type, operation) super("Invalid document format for bulk #{type} operation: #{operation}.") end |