1 | <?php |
||
7 | class FileNotFound extends Exception |
||
8 | { |
||
9 | /** |
||
10 | * The services file can not be resolved. |
||
11 | * |
||
12 | * @param string $additional |
||
13 | * |
||
14 | * @return static |
||
15 | */ |
||
16 | public static function servicesFileNotFound($additional = '') |
||
23 | |||
24 | /** |
||
25 | * The migration file can not be found. |
||
26 | * |
||
27 | * @param string $migrationFileName |
||
28 | * |
||
29 | * @return static |
||
30 | */ |
||
31 | public static function migrationFileNotFound($migrationFileName, $path) |
||
37 | } |
||
38 |