PHP Conference Japan 2024

MongoDB\Driver\Exception\RuntimeException::hasErrorLabel

(mongodb >= 1.6.0)

MongoDB\Driver\Exception\RuntimeException::hasErrorLabel返回是否与异常关联了错误标签

描述

final public MongoDB\Driver\Exception\RuntimeException::hasErrorLabel(string $errorLabel): bool

返回errorLabel是否已为此异常设置。错误标签由服务器或扩展设置,以指示应用程序可能处理的特定情况。常见的情况可能是确定是否安全地重试由于瞬态错误(例如网络错误、事务冲突)而失败的事务。错误标签的示例包括TransientTransactionErrorUnknownTransactionCommitResult

参数

errorLabel

要测试的errorLabel的名称。

返回值

给定的errorLabel是否与此异常关联。

添加注释

用户贡献的注释

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