Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| FileNotReadableException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace pvc\storage\filesys\err; |
| 6 | |
| 7 | use pvc\err\stock\RuntimeException; |
| 8 | use Throwable; |
| 9 | |
| 10 | class FileNotReadableException extends RuntimeException |
| 11 | { |
| 12 | public function __construct(string $filePath, ?Throwable $prev = null) |
| 13 | { |
| 14 | parent::__construct($filePath, $prev); |
| 15 | } |
| 16 | } |