diff options
Diffstat (limited to 'vendor/maennchen/zipstream-php/src/Exception/OverflowException.php')
-rw-r--r-- | vendor/maennchen/zipstream-php/src/Exception/OverflowException.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/maennchen/zipstream-php/src/Exception/OverflowException.php b/vendor/maennchen/zipstream-php/src/Exception/OverflowException.php deleted file mode 100644 index 09bdafb28..000000000 --- a/vendor/maennchen/zipstream-php/src/Exception/OverflowException.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace ZipStream\Exception; - -use ZipStream\Exception; - -/** - * This Exception gets invoked if a counter value exceeds storage size - */ -class OverflowException extends Exception -{ - /** - * @internal - */ - public function __construct() - { - parent::__construct('File size exceeds limit of 32 bit integer. Please enable "zip64" option.'); - } -} |