|
@ -105,7 +105,8 @@ class FrontController |
|
|
$request = \Majestic\Env::getRequestUri(true); |
|
|
$request = \Majestic\Env::getRequestUri(true); |
|
|
$route = $this->getRouter()->route($request); |
|
|
$route = $this->getRouter()->route($request); |
|
|
if (!$route) { |
|
|
if (!$route) { |
|
|
throw new \Majestic\Exception\Error404Exception('Route for "' . $request . '" not found'); |
|
|
|
|
|
|
|
|
$message = 'Route for "' . $request . '" not found'; |
|
|
|
|
|
\App::abort(404, $message); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
$action_class = $route->getAction(); |
|
|
$action_class = $route->getAction(); |
|
|