class Mongo::Error::BulkWriteError

Exception raised if there are write errors upon executing the bulk operation.

@since 2.0.0

Attributes

result[R]

@return [ BSON::Document ] result The error result.

Public Class Methods

new(result) click to toggle source

Instantiate the new exception.

@example Instantiate the exception.

Mongo::Error::BulkWriteFailure.new(response)

@param [ Hash ] result A processed response from the server

reporting results of the operation.

@since 2.0.0

# File lib/mongo/error/bulk_write_error.rb, line 36
def initialize(result)
  @result = result
end