| 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 | * @param string $absolutePath |
||
| 22 | * @param string $message |
||
| 23 | * @return self |
||
| 24 | */ |
||
| 25 | final public static function fileCreationFailed($absolutePath, $message) |
||
| 36 | } |
||
| 37 |