Flint\Controller\Controller::createNotFoundException PHP Method

createNotFoundException() protected method

This will result in a 404 response code.
protected createNotFoundException ( string $message = 'Not Found' ) : Exception
$message string
return Exception
    protected function createNotFoundException($message = 'Not Found')
    {
        return $this->abort(404, $message);
    }