public function actionError()
{
/* @var HttpException $exception */
$exception = \Yii::$app->getErrorHandler()->exception;
return $this->render('errors/' . $exception->statusCode, [
'name' => '',
'message' => $exception->getMessage(),
'exception' => $exception,
]);
}