Error.class.php
383 Bytes
<?php
class Controller_Error extends Controller_Abstract {
/**
* 应用错误处理
*
* @param string $sign
* eg:
* _on_controller_not_found 无效的控制器
* _on_action_not_defined: 未定义的操作方法
* _on_not_allow: 无权限
* @param string $error 错误信息
*
*/
function indexAction($sign='',$error=''){
return $error;
}
}
?>