在线文档教程
PHP

Exception::__construct

Exception::__construct

(PHP 5 >= 5.1.0, PHP 7)

Exception::__construct - 构造异常

描述

public Exception::__construct ([ string $message = "" [, int $code = 0 [, Throwable $previous = NULL ]]] )

构造例外。

参数

message

抛出的异常消息。

code

异常代码。

previous

之前用于异常链接的异常。

注意:如果已经设置了属性$ code 和$ message,则从子类调用 Exception 类的构造函数会忽略默认参数。

更新日志

VersionDescription
7.0.0The previous parameter is now of type Throwable.
5.3.0The previous parameter was added.

笔记

:本message是不是二进制安全的。

← Exception

Exception::getMessage →