[Debug] fix error message on double exception

This commit is contained in:
Nicolas Grekas 2014-11-23 21:05:05 +01:00 committed by Fabien Potencier
parent 819280fbbc
commit 1ed7606c32

View File

@ -169,7 +169,7 @@ EOF
} catch (\Exception $e) { } catch (\Exception $e) {
// something nasty happened and we cannot throw an exception anymore // something nasty happened and we cannot throw an exception anymore
if ($this->debug) { if ($this->debug) {
$title = sprintf('Exception thrown when handling an exception (%s: %s)', get_class($exception), $exception->getMessage()); $title = sprintf('Exception thrown when handling an exception (%s: %s)', get_class($e), $e->getMessage());
} else { } else {
$title = 'Whoops, looks like something went wrong.'; $title = 'Whoops, looks like something went wrong.';
} }