类 MissingModelException
当模型找不到时使用。
属性摘要
-
$_attributes protected
数组
从构造函数传递并可用于开发错误显示视图中的属性数组。
-
$_defaultCode protected
整数
默认异常代码
-
$_messageTemplate protected
字符串
具有 attributes sprintf()'ed 的模板字符串。
方法摘要
-
__construct() public
构造函数。
-
getAttributes() public
获取传递的属性
方法详情
__construct() ¶ public
__construct(array|string $message = '', int|null $code = null, Throwable|null $previous = null)
构造函数。
允许创建被视为框架错误并在关闭调试模式时禁用的异常。
参数
-
array|string
$message 可选 错误消息字符串或在视图中可用的属性数组,并将属性 sprintf()'ed 到 Exception::$_messageTemplate 中
-
int|null
$code 可选 错误代码
-
Throwable|null
$previous 可选 之前的异常。