1 | <?php |
||
14 | class FileNotWritableException extends UnexpectedValueException implements ExceptionInterface |
||
15 | { |
||
16 | 1 | /** |
|
17 | * @deprecated |
||
18 | 1 | */ |
|
19 | public static function fromInvalidMoveOperation(string $fromPath, string $toPath) : self |
||
28 | 1 | ||
29 | /** |
||
30 | 1 | * @deprecated |
|
31 | 1 | */ |
|
32 | public static function fromNotWritableDirectory(string $directory) : self |
||
40 | |||
41 | public static function fromPrevious(FileWriterException $previous) : self |
||
45 | } |
||
46 |