2024年PHP日本大会

MongoDB\Driver\Exception\WriteException 类

(mongodb >= 1.0.0)

警告

从扩展版本1.20.0开始,此异常类已弃用,并将从2.0中删除。此异常从未被扩展直接抛出。应用程序应该使用MongoDB\Driver\Exception\BulkWriteException代替。

简介

写入操作失败时抛出的异常的基类。此异常封装了一个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