浏览代码

[FrameworkBundle] fixed renamed routing exception

Kris Wallsmith 14 年之前
父节点
当前提交
8e85a36e37
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Symfony/Bundle/FrameworkBundle/RequestListener.php

+ 2 - 2
src/Symfony/Bundle/FrameworkBundle/RequestListener.php

@@ -19,7 +19,7 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 use Symfony\Component\Routing\Exception\MethodNotAllowedException;
-use Symfony\Component\Routing\Exception\NotFoundException;
+use Symfony\Component\Routing\Exception\ResourceNotFoundException;
 use Symfony\Component\Routing\RouterInterface;
 use Symfony\Component\Routing\RequestContext;
 
@@ -107,7 +107,7 @@ class RequestListener
             }
 
             $request->attributes->add($parameters);
-        } catch (NotFoundException $e) {
+        } catch (ResourceNotFoundException $e) {
             $message = sprintf('No route found for "%s %s"', $request->getMethod(), $request->getPathInfo());
             if (null !== $this->logger) {
                 $this->logger->err($message);