はじめに
PHP Manual
PHP Manual»MongoDB\Driver\Exception»MongoDB\Driver\Exception\CommandException

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 {
/* プロパティ */
public readonly object $resultDocument;
/* 継承したプロパティ */
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 function getResultDocument(): object
/* 継承したメソッド */
final public function Exception::getMessage(): string
final public function Exception::getPrevious(): ?Throwable
final public function Exception::getCode(): int
final public function Exception::getFile(): string
final public function Exception::getLine(): int
final public function Exception::getTrace(): array
final public function Exception::getTraceAsString(): string
public function Exception::__toString(): string
private function Exception::__clone(): void
}
resultDocument
The result document associated with the failed command.
バージョン 説明
PECL mongodb 2.3.0 The resultDocument property is now public readonly.

目次

To Top