From b473a6932a0ea205d8325b4f35505e955d492961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Mon, 19 Aug 2024 16:48:37 +0200 Subject: [PATCH] chore: explicit error message --- src/Config/Connector/OvhConnector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config/Connector/OvhConnector.php b/src/Config/Connector/OvhConnector.php index ca8b72a..9d566b3 100644 --- a/src/Config/Connector/OvhConnector.php +++ b/src/Config/Connector/OvhConnector.php @@ -197,7 +197,7 @@ readonly class OvhConnector implements ConnectorInterface } if (!$ok) { - throw new BadRequestHttpException('The credentials provided do not have enough permissions to purchase a domain name.'); + throw new BadRequestHttpException('This Connector does not have enough permissions on the Provider API. Please recreate this Connector.'); } }