From 813289b109235199a05d3665187fe4905bef4763 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Tue, 4 Sep 2012 17:01:07 +0200 Subject: [PATCH] Rename Exception Interface --- src/FFMpeg/Exception/BinaryNotFoundException.php | 2 +- src/FFMpeg/Exception/{Exception.php => ExceptionInterface.php} | 2 +- src/FFMpeg/Exception/InvalidArgumentException.php | 2 +- src/FFMpeg/Exception/LogicException.php | 2 +- src/FFMpeg/Exception/RuntimeException.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename src/FFMpeg/Exception/{Exception.php => ExceptionInterface.php} (89%) diff --git a/src/FFMpeg/Exception/BinaryNotFoundException.php b/src/FFMpeg/Exception/BinaryNotFoundException.php index d55f78a..aa16b8c 100644 --- a/src/FFMpeg/Exception/BinaryNotFoundException.php +++ b/src/FFMpeg/Exception/BinaryNotFoundException.php @@ -11,7 +11,7 @@ namespace FFMpeg\Exception; -class BinaryNotFoundException extends \Exception implements Exception +class BinaryNotFoundException extends \Exception implements ExceptionInterface { } diff --git a/src/FFMpeg/Exception/Exception.php b/src/FFMpeg/Exception/ExceptionInterface.php similarity index 89% rename from src/FFMpeg/Exception/Exception.php rename to src/FFMpeg/Exception/ExceptionInterface.php index 90944d8..a98ed0e 100644 --- a/src/FFMpeg/Exception/Exception.php +++ b/src/FFMpeg/Exception/ExceptionInterface.php @@ -11,7 +11,7 @@ namespace FFMpeg\Exception; -interface Exception +interface ExceptionInterface { } diff --git a/src/FFMpeg/Exception/InvalidArgumentException.php b/src/FFMpeg/Exception/InvalidArgumentException.php index 0cd2f91..df17f0c 100644 --- a/src/FFMpeg/Exception/InvalidArgumentException.php +++ b/src/FFMpeg/Exception/InvalidArgumentException.php @@ -11,7 +11,7 @@ namespace FFMpeg\Exception; -class InvalidArgumentException extends \InvalidArgumentException implements Exception +class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface { } diff --git a/src/FFMpeg/Exception/LogicException.php b/src/FFMpeg/Exception/LogicException.php index 0f060bc..9ba8143 100644 --- a/src/FFMpeg/Exception/LogicException.php +++ b/src/FFMpeg/Exception/LogicException.php @@ -11,7 +11,7 @@ namespace FFMpeg\Exception; -class LogicException extends \LogicException implements Exception +class LogicException extends \LogicException implements ExceptionInterface { } diff --git a/src/FFMpeg/Exception/RuntimeException.php b/src/FFMpeg/Exception/RuntimeException.php index 8b990a6..7a49b12 100644 --- a/src/FFMpeg/Exception/RuntimeException.php +++ b/src/FFMpeg/Exception/RuntimeException.php @@ -11,7 +11,7 @@ namespace FFMpeg\Exception; -class RuntimeException extends \RuntimeException implements Exception +class RuntimeException extends \RuntimeException implements ExceptionInterface { }