Err: Controller 'mall_listController' is not exists!

321.      static function err404($__module$__controller$__action$msg){
322.          //echo "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
323.          //echo $__module."<br>";
324.          //echo $__controller."<br>";
325.          //echo $__action."<br>";
326.          err($msg);
327.          exit;
328.      }
329.      
330.  }
331. 
1084.  function _err_router($msg){
1085.      Global $__module$__controller$__action;
1086.      if(!method_exists('BaseController''err404')){
1087.          err($msg);
1088.      }else{
1089.          BaseController::err404($__module$__controller$__action$msg);
1090.      }
1091.  }
1092.  function _err_handle($errno$errstr$errfile$errline){
1093.      if(=== error_reporting() || 30711 === error_reporting())return false;
1094.      $msg "ERROR";
71.      if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
72.      if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
73.  }
74. 
75.  if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
76.  if(!class_exists($controller_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
77.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
78. 
79.  $controller_obj = new $controller_name();
80.  $controller_obj->$action_name();
81. 
6.  header("Access-Control-Request-Headers:*");
7.  header("Access-Control-Allow-Headers: Content-Type, X-Requested-With, Cache-Control,Authorization");
8.  header("Access-Control-Allow-Credentials: true");
9. 
10.  define('APP_DIR'realpath('./'));
11.  require(APP_DIR.'/protected/lib/speed.php');
12.  ?>