MongoDB\Driver\Exception\WriteException 类

(mongodb >= 1.0.0)

简介

用于由失败的写入操作抛出的异常的基类。该异常封装了一个 MongoDB\Driver\WriteResult 对象。

类概要

abstract class MongoDB\Driver\Exception\WriteException extends MongoDB\Driver\Exception\ServerException implements MongoDB\Driver\Exception\Exception {
/* 属性 */
/* 继承的属性 */
protected ?array $errorLabels;
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 方法 */
/* 继承的方法 */
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

属性

writeResult

与失败的写入操作关联的 MongoDB\Driver\WriteResult

变更日志

版本 描述
PECL mongodb 1.5.0

此类现在扩展了 MongoDB\Driver\Exception\ServerException 而不是 MongoDB\Driver\Exception\RuntimeException.

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top