1 | <?php |
||
9 | class FileException extends Exception |
||
10 | { |
||
11 | public static function missingFile(string $filePath): self |
||
15 | |||
16 | public static function cantOpenFile(string $filePath): self |
||
20 | |||
21 | public static function cantSaveFile(string $filePath): self |
||
25 | |||
26 | public static function cantDeleteFile(string $filePath): self |
||
30 | } |
||
31 |