Introduction
PHP Manual
PHP Manual»DOM»DOMException

La classe DOMException / Dom\Exception

(PHP 5, PHP 7, PHP 8)

Les opérations DOM lancent des exceptions lors de circonstances particulières, c.-à-d., lorsqu'il est impossible d'exécuter une opération pour des raisons logiques.

Cette classe est aliasée sous le nom Dom\Exception dans l'espace de noms Dom.

Voir aussi Les exceptions.

final class DOMException extends Exception {
/* Propriétés */
public int $code;
/* Propriétés héritées */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* Méthodes héritées */
public function Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
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
}
code

Un entier indiquant le type d'erreur généré

To Top