@@ -12,11 +12,11 @@
namespace Symfony\Component\DependencyInjection\Exception;
/**
- * Exception
+ * ExceptionInterface
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Bulat Shakirzyanov <bulat@theopenskyproject.com>
*/
-interface Exception
+interface ExceptionInterface
{
}
@@ -18,6 +18,6 @@ use \InvalidArgumentException as BaseInvalidArgumentException;
-class InvalidArgumentException extends BaseInvalidArgumentException implements Exception
+class InvalidArgumentException extends BaseInvalidArgumentException implements ExceptionInterface
@@ -7,6 +7,6 @@ namespace Symfony\Component\DependencyInjection\Exception;
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
-class RuntimeException extends \RuntimeException implements Exception
+class RuntimeException extends \RuntimeException implements ExceptionInterface