$router = new Router();
$router->add( '/', [ 'controller' => 'index', 'action' => 'index', ] ); $router->notFound( [ 'controller' => 'index', 'action' => 'notfound', ] );
when i open /test or /test/demo give me a notice Exception: TestController handler class cannot be loaded
I want to running notFound, not notice