Differences Between: [Versions 400 and 402] [Versions 400 and 403]
1 <?php 2 declare(strict_types=1); 3 4 namespace ZipStream\Exception; 5 6 use ZipStream\Exception; 7 8 /** 9 * This Exception gets invoked if a counter value exceeds storage size 10 */ 11 class OverflowException extends Exception 12 { 13 public function __construct() 14 { 15 parent::__construct('File size exceeds limit of 32 bit integer. Please enable "zip64" option.'); 16 } 17 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body