From 9118b622d04beada2fd126f9051ea9b609fecf98 Mon Sep 17 00:00:00 2001 From: Dominic Tubach Date: Fri, 19 Apr 2024 10:29:04 +0200 Subject: [PATCH] APIWrapper: Rethrow exception --- CRM/TwingleCampaign/Utils/APIWrapper.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CRM/TwingleCampaign/Utils/APIWrapper.php b/CRM/TwingleCampaign/Utils/APIWrapper.php index 5afe426..c9c5d68 100644 --- a/CRM/TwingleCampaign/Utils/APIWrapper.php +++ b/CRM/TwingleCampaign/Utils/APIWrapper.php @@ -204,7 +204,9 @@ class CRM_TwingleCampaign_Utils_APIWrapper { 'contribution_id' => $contribution['id'], ] ); + + throw $e; } } -} \ No newline at end of file +}