Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ModuleLoaderException extends \Exception |
||
22 | { |
||
23 | /** |
||
24 | * Module not found message |
||
25 | */ |
||
26 | const MODULE_NOT_FOUND = 'Module `{%1}` not found'; |
||
27 | |||
28 | /** |
||
29 | * @param string $name |
||
30 | * @return \Quantum\Exceptions\ModuleLoaderException |
||
31 | */ |
||
32 | public static function notFound(string $name): ModuleLoaderException |
||
37 |