Class MissingCellTemplateException
Used when a template file for a cell cannot be found.
Namespace: Cake\View\Exception
Property Summary
-
$_attributes protected
arrayArray of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.
-
$_defaultCode protected
intDefault exception code
-
$_messageTemplate protected
stringTemplate string that has attributes sprintf()'ed into it.
-
$filename protected
string -
$name protected
string -
$paths protected
array<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(string $name, string $file, array<string> $paths = [], int|null $code = null, Throwable|null $previous = null)
Constructor
Parameters
-
string$name The Cell name that is missing a view.
-
string$file The view filename.
-
array<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
stringgetAttributes() ¶ 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