Skip to content

Commit 01c94b9

Browse files
authored
Merge pull request #3 from hiqdev/copy-error-handling
enhanced error handling in CopyHandler
2 parents 867a721 + 1d470ca commit 01c94b9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/handlers/CopyHandler.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ class CopyHandler extends BaseHandler
2222
*/
2323
public function renderPath($path, $data)
2424
{
25-
copy($data->getCopy(), $path);
25+
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+
}
2630
Yii::warning('Copied file: ' . $path);
2731
}
2832

0 commit comments

Comments
 (0)