MongoDB\Driver\Exception\RuntimeException 类

(mongodb >= 1.0.0)

简介

当驱动程序遇到运行时错误(例如 » libmongoc 的内部错误)时抛出。

类概要

class MongoDB\Driver\Exception\RuntimeException extends RuntimeException 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 hasErrorLabel(string $errorLabel): bool
/* 继承的方法 */
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

属性

errorLabels

包含与异常关联的错误标签数组。例如,错误标签可用于检测事务是否可以安全地重试,如果存在 TransientTransactionError 标签。应使用 MongoDB\Driver\Exception\RuntimeException::hasErrorLabel() 测试特定错误标签的存在,而不是手动解释此 errorLabels 属性。

变更日志

版本 描述
PECL mongodb 1.6.0

已添加 MongoDB\Driver\Exception\RuntimeException::hasErrorLabel() 方法和 MongoDB\Driver\Exception\RuntimeException::errorLabels 属性。

目录

添加注释

用户贡献的注释

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