[HttpKernel] reset handling if subject::handle throws an exception, otherwise it wouldnt be able to handle furthermore

This commit is contained in:
Robert Schönthal 2011-03-05 20:21:23 +01:00
parent 727326b7b8
commit 415b456b4e

View File

@ -77,6 +77,9 @@ class ExceptionListener
error_log($message);
}
// set handling to false otherwise it wont be able to handle further more
$handling = false;
// re-throw the exception as this is a catch-all
throw $exception;
}