Exception::__construct

(PHP 5, PHP 7, PHP 8)

Exception::__construct异常构造函数

说明

public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)

异常构造函数。

参数

message

抛出的异常消息内容。

code

异常代码。

previous

异常链中的前一个异常。

注意: 如果子类的 $code 和 $message 属性已设置,在调用 Exception 父类的构造器时可以省略默认参数。

注释

注意:

message 是二进制安全的。

add a note

User Contributed Notes

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