fix: HttpException namespace

This commit is contained in:
vinceh121
2024-08-11 15:53:17 +02:00
parent e1625cbfac
commit 4ac43e9ca9

View File

@@ -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']);
}
}