PHP 8.1.28 Released!

The MongoDB\Driver\Exception\CommandException class

(mongodb >= 1.5.0)

简介

Thrown when a command fails.

类摘要

class MongoDB\Driver\Exception\CommandException 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 getResultDocument(): object
/* 继承的方法 */
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

属性

resultDocument

The result document associated with the failed command.

目录

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top