Phosphorum\Controllers\ErrorController::route404Action PHP Метод

route404Action() публичный Метод

public route404Action ( )
    public function route404Action()
    {
        $this->tag->setTitle('Page not found');
        $code = 404;
        $this->view->setVars(['code' => $code, 'message' => 'Unfortunately, the page you are requesting can not be found!']);
        $this->response->resetHeaders()->setStatusCode($code, 'Not Found');
    }