Class MissingTemplateException
Used when a template file cannot be found.
Namespace: Cake\View\Exception
Property Summary
-
$_attributes protected
array
Array of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.
-
$_defaultCode protected
int
Default exception code
-
$_messageTemplate protected
string
Template string that has attributes sprintf()'ed into it.
-
$filename protected
string
-
$paths protected
list<string>
-
$templateName protected
string|null
-
$type protected
string
Method Summary
-
__construct() public
Constructor
-
formatMessage() public
Get the formatted exception message.
-
getAttributes() public
Get the passed in attributes
Method Detail
__construct() ¶ public
__construct(list<string>|string $file, list<string> $paths = [], int|null $code = null, Throwable|null $previous = null)
Constructor
Parameters
-
list<string>|string
$file Either the file name as a string, or in an array for backwards compatibility.
-
list<string>
$paths optional The path list that template could not be found in.
-
int|null
$code optional The code of the error.
-
Throwable|null
$previous optional the previous exception.
formatMessage() ¶ public
formatMessage(): string
Get the formatted exception message.
Returns
string
getAttributes() ¶ public
getAttributes(): array<string, mixed>
Get the passed in attributes
Returns
array<string, mixed>
Property Detail
$_attributes ¶ protected
Array of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.
Type
array