1 | <?php |
||
16 | class TemplateCacheException extends \RuntimeException |
||
17 | { |
||
18 | /** |
||
19 | * @param string $path |
||
20 | * |
||
21 | * @return static |
||
22 | */ |
||
23 | public static function cannotCreateDirectory($path) |
||
24 | { |
||
25 | return new static( |
||
26 | "Cannot create template cache directory in '$path'" |
||
27 | ); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @param string $path |
||
32 | * |
||
33 | * @return static |
||
34 | */ |
||
35 | public static function pathNotWriteable($path) |
||
39 | |||
40 | } |
||
41 |