类 MissingLayoutException
当找不到布局文件时使用。
命名空间: Cake\View\Exception
属性摘要
-
$_attributes protected
数组
从构造函数中传入的属性数组,在显示开发错误时在视图中可用。
-
$_defaultCode protected
整数
默认异常代码
-
$_messageTemplate protected
字符串
具有属性 sprintf() 的模板字符串。
-
$filename protected
字符串
-
$paths protected
list<string>
-
$templateName protected
字符串|null
-
$type protected
字符串
方法摘要
-
__construct() public
构造函数
-
formatMessage() public
获取格式化的异常消息。
-
getAttributes() public
获取传入的属性
方法详情
__construct() ¶ public
__construct(list<string>|string $file, list<string> $paths = [], int|null $code = null, Throwable|null $previous = null)
构造函数
参数
-
list<string>|string
$file 文件名作为字符串,或作为数组以兼容旧版本。
-
list<string>
$paths optional 模板未找到的路径列表。
-
int|null
$code optional 错误代码。
-
Throwable|null
$previous optional 之前的异常。