| 1 | <?php |
||
| 19 | class CopyFailedException extends Exception |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * CopyFailedException constructor. |
||
| 23 | * |
||
| 24 | * @param FileNodeInterface $fromFile |
||
| 25 | * @param int $newPath |
||
| 26 | * @param string $message |
||
| 27 | * @param Exception|null $previous |
||
| 28 | */ |
||
| 29 | 1 | public function __construct(FileNodeInterface $fromFile, $newPath, $message = '', Exception $previous = null) |
|
| 35 | } |
||
| 36 |