Cakephp找不到Lib / Error / AppExceptionRenderer

时间:2016-02-26 13:29:10

标签: php cakephp exception error-handling

我正在尝试在cakephp 2.0中添加自定义异常渲染器。

按照教程,我将此代码添加到core.php

Configure::write('Exception', array(
    'handler' => 'ErrorHandler::handleException',
    'renderer' => 'AppExceptionRenderer',
    'log' => true
));

AppExceptionRenderer类位于app/Lib/Error/AppExceptionRenderer.php

然而,当异常发生时,我会收到以下错误。

<b>Fatal error</b>:  Class 'AppExceptionRenderer' not found in <b>/srv/cs-backend/cs-backend/lib/Cake/Error/ErrorHandler.php</b> on line <b>121</b><br />

看起来App::uses效果不佳。但不太确定。请帮忙。

0 个答案:

没有答案