@@ -12,10 +12,10 @@
namespace Symfony\Component\Routing\Exception;
/**
- * Exception
+ * ExceptionInterface
*
* @author Alexandre Salomé <alexandre.salome@gmail.com>
*/
-interface Exception
+interface ExceptionInterface
{
}
@@ -16,6 +16,6 @@ namespace Symfony\Component\Routing\Exception;
-class InvalidParameterException extends \InvalidArgumentException implements Exception
+class InvalidParameterException extends \InvalidArgumentException implements ExceptionInterface
@@ -18,7 +18,7 @@ namespace Symfony\Component\Routing\Exception;
* @author Kris Wallsmith <kris@symfony.com>
-class MethodNotAllowedException extends \RuntimeException implements Exception
+class MethodNotAllowedException extends \RuntimeException implements ExceptionInterface
protected $allowedMethods;
@@ -17,6 +17,6 @@ namespace Symfony\Component\Routing\Exception;
-class MissingMandatoryParametersException extends \InvalidArgumentException implements Exception
+class MissingMandatoryParametersException extends \InvalidArgumentException implements ExceptionInterface
@@ -18,6 +18,6 @@ namespace Symfony\Component\Routing\Exception;
-class ResourceNotFoundException extends \RuntimeException implements Exception
+class ResourceNotFoundException extends \RuntimeException implements ExceptionInterface
-class RouteNotFoundException extends \InvalidArgumentException implements Exception
+class RouteNotFoundException extends \InvalidArgumentException implements ExceptionInterface