Browse Source

error handler now works properly with @

tags/2.0.0-beta
Alexander Makarov 12 years ago
parent
commit
32f34b60b8
  1. 2
      framework/base/ErrorHandler.php

2
framework/base/ErrorHandler.php

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

Loading…
Cancel
Save