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 { }