beginPage() ?>
getExceptionName($exception);
if ($exception instanceof \yii\web\HttpException) {
echo (int) $exception->statusCode . ' ' . $handler->htmlEncode($name);
} else {
if ($name !== null) {
echo $handler->htmlEncode($name . ' – ' . get_class($exception));
} else {
echo $handler->htmlEncode(get_class($exception));
}
}
?>
' . $handler->createHttpStatusLink($exception->statusCode, $handler->htmlEncode($exception->getName())) . '';
echo ' – ' . $handler->addTypeLinks(get_class($exception));
} else {
$name = $handler->getExceptionName($exception);
if ($name !== null) {
echo '' . $handler->htmlEncode($name) . '';
echo ' – ' . $handler->addTypeLinks(get_class($exception));
} else {
echo '' . $handler->htmlEncode(get_class($exception)) . '';
}
}
?>
= nl2br($handler->htmlEncode($exception->getMessage())) ?>
errorInfo)): ?>
Error Info: = $handler->htmlEncode(print_r($exception->errorInfo, true)) ?>
= $handler->renderPreviousExceptions($exception) ?>
= $handler->renderCallStack($exception) ?>
= $handler->renderRequest() ?>
endBody() // to allow injecting code into body (mostly by Yii Debug Toolbar)?>
endPage() ?>