ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
OverflowException.php
Go to the documentation of this file.
1<?php
2declare(strict_types=1);
3
4namespace ZipStream\Exception;
5
7
12{
13 public function __construct()
14 {
15 parent::__construct('File size exceeds limit of 32 bit integer. Please enable "zip64" option.');
16 }
17}
An exception for terminatinating execution or to throw for unit testing.
This Exception gets invoked if a counter value exceeds storage size.
This class is only for inheriting.
Definition: Exception.php:10