We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 867a721 + 1d470ca commit 01c94b9Copy full SHA for 01c94b9
src/handlers/CopyHandler.php
@@ -22,7 +22,11 @@ class CopyHandler extends BaseHandler
22
*/
23
public function renderPath($path, $data)
24
{
25
- copy($data->getCopy(), $path);
+ try {
26
+ copy($data->getCopy(), $path);
27
+ } catch (\Exception $e) {
28
+ throw new \RuntimeException("Failed to copy file \"{$data->getCopy()}\" to \"$path\": {$e->getMessage()}");
29
+ }
30
Yii::warning('Copied file: ' . $path);
31
}
32
0 commit comments