| 1 | <?php |
||
| 7 | final class InvalidConfigException extends LogicException implements Exception |
||
| 8 | { |
||
| 9 | use ExceptionFactory; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $filename |
||
| 13 | * |
||
| 14 | * @return self |
||
| 15 | */ |
||
| 16 | public static function fromPHPFileError($filename) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $filename |
||
| 23 | * @param string $message |
||
| 24 | * |
||
| 25 | * @return self |
||
| 26 | */ |
||
| 27 | public static function fromJSONFileError($filename, $message) |
||
| 31 | } |
||
| 32 |