Err: Controller 'sitemap.xmlController' is not exists!

1379.   * @param string $msg 错误信息
1380.   */
1381.  function _err_router($msg) {
1382.      Global $__module$__controller$__action;
1383.      if (!method_exists('BaseController''err404')) {
1384.          err($msg);
1385.      } else {
1386.          BaseController::err404($__module$__controller$__action$msg);
1387.      }
1388.  }
1389. 
469.  if (!is_available_classname($__controller)) {
470.      _err_router("Err: Controller '$controller_name' is not correct!");
471.  }
472. 
473.  if (!class_exists($controller_nametrue)) {
474.      _err_router("Err: Controller '$controller_name' is not exists!");
475.  }
476. 
477.  if (!method_exists($controller_name$action_name)) {
478.      _err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
479.  }
170.  require(APP_DIR.'/protected/lib/Common.php');
171.  $speedFile APP_DIR '/protected/lib/Speed.php';
172.  if (function_exists('resolve_path_case')) {
173.      $speedFile resolve_path_case($speedFile);
174.  }
175.  require($speedFile);