SimulationFileUnknownException.php 482 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace ZipStream\Exception;
  4. use ZipStream\Exception;
  5. /**
  6. * This Exception gets invoked if a strict simulation is executed and the file
  7. * information can't be determined without reading the entire file.
  8. */
  9. class SimulationFileUnknownException extends Exception
  10. {
  11. public function __construct()
  12. {
  13. parent::__construct('The details of the strict simulation file could not be determined without reading the entire file.');
  14. }
  15. }