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