aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ramsey/collection/src/Exception/OutOfBoundsException.php')
-rw-r--r--vendor/ramsey/collection/src/Exception/OutOfBoundsException.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php b/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php
index 4e9d16fa3..c75294e53 100644
--- a/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php
+++ b/vendor/ramsey/collection/src/Exception/OutOfBoundsException.php
@@ -14,9 +14,11 @@ declare(strict_types=1);
namespace Ramsey\Collection\Exception;
+use OutOfBoundsException as PhpOutOfBoundsException;
+
/**
* Thrown when attempting to access an element out of the range of the collection.
*/
-class OutOfBoundsException extends \OutOfBoundsException
+class OutOfBoundsException extends PhpOutOfBoundsException implements CollectionException
{
}