PHP Conference Japan 2024

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