The following code will be caught by the ErrorNotifierBundle: ``` php throw new \Exception("Error Processing Request", 1); ``` But the following code will just produce a blank page: ``` php $a = null; $a->test(); ```
The following code will be caught by the ErrorNotifierBundle:
But the following code will just produce a blank page: