eg:
<?php $dispatcher->setErrorHandler(array(get_class($this),'error_handler')); ?>
(Yaf >=1.0.0)
Yaf_Dispatcher::setErrorHandler — Set error handler
Set error handler for Yaf. when application.dispatcher.throwException is off, Yaf will trigger catchable error while unexpected errors occurred.
Thus, this error handler will be called while the error raise.
callback
A callable callback
error_types
eg:
<?php $dispatcher->setErrorHandler(array(get_class($this),'error_handler')); ?>