error handler now works properly with @

This commit is contained in:
Alexander Makarov
2012-12-26 16:40:25 +04:00
parent 4502d5c6ae
commit 32f34b60b8

View File

@ -77,8 +77,10 @@ class ErrorHandler extends ApplicationComponent
*/ */
public function handleError($code, $message, $file, $line) public function handleError($code, $message, $file, $line)
{ {
if(error_reporting()!==0) {
throw new \ErrorException($message, 0, $code, $file, $line); throw new \ErrorException($message, 0, $code, $file, $line);
} }
}
/** /**
* @param \Exception $exception * @param \Exception $exception