| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1);  | 
            ||
| 16 | public function __construct(string $absoluteOrRelativePath, array $possiblyValidFiles, ?Throwable $previous = null)  | 
            ||
| 17 |     { | 
            ||
| 18 | parent::__construct(sprintf(  | 
            ||
| 19 | 'Unable to find a file referenced by "%s", tried: %s',  | 
            ||
| 20 | $absoluteOrRelativePath,  | 
            ||
| 21 | print_r($possiblyValidFiles, true)  | 
            ||
| 22 | ), 0, $previous);  | 
            ||
| 23 | }  | 
            ||
| 24 | }  | 
            ||
| 25 |