Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit efbf588

Browse files
committed
bug symfony#12553 [Debug] fix error message on double exception (nicolas-grekas)
This PR was submitted for the 2.6 branch but it was merged into the 2.3 branch instead (closes symfony#12553). Discussion ---------- [Debug] fix error message on double exception | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 1ed7606 [Debug] fix error message on double exception
2 parents 819280f + 1ed7606 commit efbf588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Debug/ExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public function getContent(FlattenException $exception)
169169
} catch (\Exception $e) {
170170
// something nasty happened and we cannot throw an exception anymore
171171
if ($this->debug) {
172-
$title = sprintf('Exception thrown when handling an exception (%s: %s)', get_class($exception), $exception->getMessage());
172+
$title = sprintf('Exception thrown when handling an exception (%s: %s)', get_class($e), $e->getMessage());
173173
} else {
174174
$title = 'Whoops, looks like something went wrong.';
175175
}

0 commit comments

Comments
 (0)