The MongoDB\Driver\WriteError class

(mongodb >=1.0.0)

Introduction

The MongoDB\Driver\WriteError class encapsulates information about a write error and may be returned as an array element from MongoDB\Driver\WriteResult::getWriteErrors().

Class synopsis

final class MongoDB\Driver\WriteError {
/* Properties */
public readonly string $message;
public readonly int $code;
public readonly int $index;
public readonly ?object $info;
/* Methods */
final public getCode(): int
final public getIndex(): int
final public getInfo(): ?object
final public getMessage(): string
}

Properties

message
The error message.
code
The error code.
index
The index of the write operation within the MongoDB\Driver\BulkWrite that caused the error.
info
Additional information for the error, or null if not available.

Changelog

Version Description
PECL mongodb 2.3.0 Added public readonly properties.

Table of Contents