except [ 404 ]: controller download not found

CORE_DIR/init.php [ 173 ]

168         $load_file = $controller_dir.'/'.$controller_name.'.php';
169         if(is_readable($load_file)){
170             require_once $load_file;
171             $class_name = $controller_name.'_controller';
172         }else{
173             throw new except('controller '.$controller_name.' not found',404);
174         }
175         $action = request::getActionName();
176         $action = $action.'Action';
177         $controller = new $class_name();
178         $controller->$action();
  1. CORE_DIR/init.php [ 159 ] » dispatcher::_dispatch()

  2. CORE_DIR/init.php [ 76 ] » dispatcher::run()

  3. APP_DIR/public/index.php [ 10 ] » framework::run()

Environment