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

1447.   * @param string $msg 错误信息
1448.   */
1449.  function _err_router($msg) {
1450.      Global $__module$__controller$__action;
1451.      if (!method_exists('BaseController''err404')) {
1452.          err($msg);
1453.      } else {
1454.          BaseController::err404($__module$__controller$__action$msg);
1455.      }
1456.  }
1457. 
508.  if (!is_available_classname($__controller)) {
509.      _err_router("Err: Controller '$controller_name' is not correct!");
510.  }
511. 
512.  if (!class_exists($controller_nametrue)) {
513.      _err_router("Err: Controller '$controller_name' is not exists!");
514.  }
515. 
516.  if (!method_exists($controller_name$action_name)) {
517.      _err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
518.  }
210.  require(APP_DIR.'/protected/lib/Common.php');
211.  $speedFile APP_DIR '/protected/lib/Speed.php';
212.  if (function_exists('resolve_path_case')) {
213.      $speedFile resolve_path_case($speedFile);
214.  }
215.  require($speedFile);