Skip to content

Commit d697e28

Browse files
committed
ignore error in client
1 parent 629ec09 commit d697e28

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Keboola/StorageApi/Client.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2309,6 +2309,7 @@ private function downloadGcsFile(array $fileInfo, string $destination): void
23092309
$object = $retBucket->object($fileInfo['gcsPath']['key']);
23102310
try {
23112311
$object->downloadToFile($destination);
2312+
// @phpstan-ignore-next-line catch.neverThrown
23122313
} catch (NotFoundException $e) {
23132314
throw new ClientException(
23142315
sprintf(self::ERROR_CANNOT_DOWNLOAD_FILE, $fileInfo['name'], $fileInfo['id']),

0 commit comments

Comments
 (0)