aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ramsey/collection/src/Exception/CollectionMismatchException.php')
-rw-r--r--vendor/ramsey/collection/src/Exception/CollectionMismatchException.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php b/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php
index d4b335f45..42f5be2df 100644
--- a/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php
+++ b/vendor/ramsey/collection/src/Exception/CollectionMismatchException.php
@@ -14,9 +14,11 @@ declare(strict_types=1);
namespace Ramsey\Collection\Exception;
+use RuntimeException;
+
/**
* Thrown when attempting to operate on collections of differing types.
*/
-class CollectionMismatchException extends \RuntimeException
+class CollectionMismatchException extends RuntimeException implements CollectionException
{
}