aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php')
-rw-r--r--vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php b/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php
index 8f45e5836..d074f45fd 100644
--- a/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php
+++ b/vendor/ramsey/collection/src/Exception/UnsupportedOperationException.php
@@ -14,9 +14,11 @@ declare(strict_types=1);
namespace Ramsey\Collection\Exception;
+use RuntimeException;
+
/**
* Thrown to indicate that the requested operation is not supported.
*/
-class UnsupportedOperationException extends \RuntimeException
+class UnsupportedOperationException extends RuntimeException implements CollectionException
{
}