Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class InvalidConfigFilePathException extends RuntimeException |
||
12 | { |
||
13 | /** |
||
14 | * Exception thrown when a Config file is outside the search directories. |
||
15 | * |
||
16 | * @param string $filename The path to the Config file. |
||
17 | * @param int $code The Exception code. |
||
18 | * @param \Throwable $previous The previous throwable used for the exception chaining. |
||
19 | */ |
||
20 | public function __construct(string $filename, int $code = 0, Throwable $previous = null) |
||
27 |