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 | /** |
||
39 | * The seeder file can not be found. |
||
40 | * |
||
41 | * @param string $seeder |
||
42 | * @param string $path |
||
43 | * |
||
44 | * @return static |
||
45 | */ |
||
46 | public static function seederNotFound($seeder, $path) |
||
52 | |||
53 | /** |
||
54 | * The command file can not be found. |
||
55 | * |
||
56 | * @param string $command |
||
57 | * |
||
58 | * @return static |
||
59 | */ |
||
60 | public static function commandNotFound($command) |
||
66 | } |
||
67 |