OverflowException.php 366 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace ZipStream\Exception;
  4. use ZipStream\Exception;
  5. /**
  6. * This Exception gets invoked if a counter value exceeds storage size
  7. */
  8. class OverflowException extends Exception
  9. {
  10. public function __construct()
  11. {
  12. parent::__construct('File size exceeds limit of 32 bit integer. Please enable "zip64" option.');
  13. }
  14. }