ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
FileNotReadableException.php
Go to the documentation of this file.
1<?php
2declare(strict_types=1);
3
4namespace ZipStream\Exception;
5
7
12{
18 public function __construct(string $path)
19 {
20 parent::__construct("The file with the path $path isn't readable.");
21 }
22}
$path
Definition: aliased.php:25
An exception for terminatinating execution or to throw for unit testing.
This Exception gets invoked if a file wasn't found.
__construct(string $path)
Constructor of the Exception.
This class is only for inheriting.
Definition: Exception.php:10