refac: 에러 핸들링 방식 변경, FatalError 대응

This commit is contained in:
2022-05-09 03:39:30 +09:00
parent 0ae6584b02
commit 194f2bd2a5
10 changed files with 24 additions and 14 deletions
+1 -1
View File
@@ -345,7 +345,7 @@ if ($server == $baseServerName) {
$imgResult = false;
$imgDetail = $pullResult['reason'];
}
} catch (\Exception $e) {
} catch (\Throwable $e) {
$imgResult = false;
$imgDetail = $e->getMessage();
}