1 | <?php |
||
15 | class TemplateNotFoundException extends \InvalidArgumentException |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @param string $path |
||
20 | * |
||
21 | * @return static |
||
22 | */ |
||
23 | public static function forFullPath($path) |
||
29 | |||
30 | /** |
||
31 | * @param string $rel_path |
||
32 | * |
||
33 | * @return static |
||
34 | */ |
||
35 | public static function forSourcePath($rel_path) |
||
41 | } |
||
42 |