|
Yaf_Dispatcher::catchException例外のキャッチのオン/オフを切り替える 説明
public Yaf_Dispatcher Yaf_Dispatcher::catchException(bool
$flag = ?)application.dispatcher.throwException が On (あるいは Yaf_Dispatcher::throwException(TRUE) で有効にした) 場合、Yaf でエラーが発生したときに例外をスローします。 そのとき、 Yaf_Dispatcher::catchException を有効にする (あるいは application.dispatcher.catchException で有効にする) と、 もし ErrorController::error を定義していれば キャッチしなかった例外はすべて ErrorController::error に送られます。 パラメータ
戻り値
例例1 Yaf_Dispatcher::catchException の例
上の例の出力は、 たとえば以下のようになります。 /* now if some error occur, assuming access a non-exists controller(or you can throw a exception yourself): */ 404:Could not find controller script **/application/controllers/No-exists-controller.php 参考
|