From 8c47b8a41da5bdb05ab9af2363e225130af207d6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 30 Aug 2010 08:35:59 +0200 Subject: [PATCH] fixed typo --- src/Symfony/Bundle/FrameworkBundle/Debug/ExceptionListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Debug/ExceptionListener.php b/src/Symfony/Bundle/FrameworkBundle/Debug/ExceptionListener.php index 4002c398ca..0f0d0a6c42 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Debug/ExceptionListener.php +++ b/src/Symfony/Bundle/FrameworkBundle/Debug/ExceptionListener.php @@ -83,7 +83,7 @@ class ExceptionListener } // re-throw the exception as this is a catch-all - throw new \RuntimeException(sprintf('Exception thrown when handling an exception.', 0, $e)); + throw new \RuntimeException('Exception thrown when handling an exception.', 0, $e); } $event->setReturnValue($response);