Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class FileNotFoundException extends NotizException |
||
21 | { |
||
22 | const DEFINITION_SOURCE_FILE_NOT_FOUND = 'The definition file at path `%s` was not found.'; |
||
23 | |||
24 | /** |
||
25 | * @param string $filePath |
||
26 | * @return self |
||
27 | */ |
||
28 | public static function definitionSourceFileNotFound(string $filePath): self |
||
37 |