From 032d00fbb6cf18635602cbef4dee353ceded6f9d Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Fri, 3 Oct 2025 11:48:11 -0300 Subject: [PATCH] Exception history --- app/src/Service/Money/Ine.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/Service/Money/Ine.php b/app/src/Service/Money/Ine.php index 24c693c..a4d78cf 100644 --- a/app/src/Service/Money/Ine.php +++ b/app/src/Service/Money/Ine.php @@ -48,8 +48,8 @@ class Ine implements Provider ]); try { $response = $this->client->get($request_uri); - } catch (GuzzleException) { - throw new EmptyResponse($request_uri); + } catch (GuzzleException $exception) { + throw new EmptyResponse($request_uri, $exception); } $body = $response->getBody(); $json = json_decode($body->getContents());