flight\Engine::_notFound PHP Метод

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

Sends an HTTP 404 response when a URL is not found.
public _notFound ( )
    public function _notFound()
    {
        $this->response(false)->status(404)->write('<h1>404 Not Found</h1>' . '<h3>The page you have requested could not be found.</h3>' . str_repeat(' ', 512))->send();
    }