diff options
Diffstat (limited to 'vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php')
-rw-r--r-- | vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php b/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php index b371b6823..43409470d 100644 --- a/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php +++ b/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php @@ -14,9 +14,11 @@ namespace Ramsey\Uuid\Exception; +use RuntimeException; + /** * Thrown to indicate that the requested operation is not supported. */ -class UnsupportedOperationException extends \RuntimeException +class UnsupportedOperationException extends RuntimeException { } |