From 4ac43e9ca972787e93a76280bc4861baad42ab40 Mon Sep 17 00:00:00 2001 From: vinceh121 Date: Sun, 11 Aug 2024 15:53:17 +0200 Subject: [PATCH] fix: HttpException namespace --- src/Config/Connector/GandiConnector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config/Connector/GandiConnector.php b/src/Config/Connector/GandiConnector.php index d9196b7..d4bf3d4 100644 --- a/src/Config/Connector/GandiConnector.php +++ b/src/Config/Connector/GandiConnector.php @@ -79,7 +79,7 @@ readonly class GandiConnector implements ConnectorInterface if ((!$dryRun && Response::HTTP_ACCEPTED !== $res->getStatusCode()) || ($dryRun && Response::HTTP_OK !== $res->getStatusCode())) { - throw new \HttpException($res->toArray()['message']); + throw new HttpException($res->toArray()['message']); } }