* @license PHP License * @package WB * @subpackage base */ WBClass::load('WBEvent_Handler'); /** * Event_Handler_Stop * * Stop event processing * * @version 0.1.0 * @package WB * @subpackage base */ class WBEvent_Handler_Stop extends WBEvent_Handler { /** * process event * * Stop processing * * @see isRecoverable() * @param WBEvent $e * @return bool true to continue, false to stop processing * @throws Exception in case of error */ public function process(WBEvent $e) { return false; } } ?>