Class MissingElementException
Used when an element file 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 -
$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(array<string>|string $file, array<string> $paths = [], int|null $code = null, Throwable|null $previous = null)
Constructor
Parameters
-
array<string>|string$file Either the file name as a string, or in an array for backwards compatibility.
-
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