From 1b2fbf50b64ef87aa5b1e25d020d6fb1fe02c59c Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Thu, 25 Jan 2024 13:46:28 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B3=E3=83=B3=E3=83=93=E3=83=8B=E6=94=AF?= =?UTF-8?q?=E6=89=95=E3=81=84=E3=81=A7=E4=BA=88=E5=AE=9A=E3=81=AE=E6=94=AF?= =?UTF-8?q?=E6=89=95=E3=83=87=E3=83=BC=E3=82=BF=E3=81=AF=E5=87=A6=E7=90=86?= =?UTF-8?q?=E3=82=B9=E3=82=AD=E3=83=83=E3=83=97=E3=81=99=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/SMBCPaymentPoll.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/SMBCPaymentPoll.php b/app/Console/Commands/SMBCPaymentPoll.php index 5b8da26..0cb642a 100644 --- a/app/Console/Commands/SMBCPaymentPoll.php +++ b/app/Console/Commands/SMBCPaymentPoll.php @@ -138,8 +138,8 @@ class SMBCPaymentPoll extends BaseCommand ->where(SmbcPayment::FIELD_ORDER_NO, $data->orderNo) ); } catch (ModelNotFoundException $e) { - $this->outputWarn(sprintf("存在しない支払予定 [%s]", $data->orderNo)); - throw $e; + $this->outputWarn(sprintf("存在しない支払予定 [%s] スキップ", $data->orderNo)); + return; }