类 InvalidParameterException
当传递的参数或操作参数类型声明缺失或无效时使用。
属性摘要
-
$_attributes protected
array
从构造函数中传递进来的属性数组,并在显示开发错误时在视图中提供。
-
$_defaultCode protected
int
默认异常代码
-
$_messageTemplate protected
string
包含属性 sprintf() 的模板字符串。
-
$templates protected
array<string, string>
方法摘要
-
__construct() public
根据消息数组中的
template
键切换消息模板。 -
getAttributes() public
获取传递进来的属性
方法详情
__construct() ¶ public
__construct(array|string $message = '', int|null $code = null, Throwable|null $previous = null)
根据消息数组中的 template
键切换消息模板。
允许你创建被视为框架错误的异常,并在调试模式关闭时禁用。
参数
-
array|string
$message optional 错误消息字符串,或属性数组,这些属性在视图中提供,并使用 sprintf() 转换为 Exception::$_messageTemplate
-
int|null
$code optional 错误代码
-
Throwable|null
$previous optional 之前的异常。