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

1399.   * @param string $msg 错误信息
1400.   */
1401.  function _err_router($msg) {
1402.      Global $__module$__controller$__action;
1403.      if (!method_exists('BaseController''err404')) {
1404.          err($msg);
1405.      } else {
1406.          BaseController::err404($__module$__controller$__action$msg);
1407.      }
1408.  }
1409. 
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);