| 1 | <?php |
||
| 16 | class FileCreationFailedException extends FormzException |
||
| 17 | { |
||
| 18 | const FILE_CREATION_FAILED = 'The file "%s" could not be created, error message is: "%s".'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @code 1489955763 |
||
| 22 | * |
||
| 23 | * @param string $absolutePath |
||
| 24 | * @param string $message |
||
| 25 | * @return FileCreationFailedException |
||
| 26 | */ |
||
| 27 | final public static function fileCreationFailed($absolutePath, $message) |
||
| 37 | } |
||
| 38 |