DOMException 类

(PHP 5, PHP 7, PHP 8)

简介

DOM 操作在特定情况下会引发异常,例如,当操作由于逻辑原因无法执行时。

另请参见 异常

类概要

final class DOMException extends Exception {
/* 属性 */
public int $code;
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 继承的方法 */
public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

属性

code

一个表示生成的错误类型的整数

添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top