From cdd037e0aeddfa3400ba1ff37636d2ea9f16d9c0 Mon Sep 17 00:00:00 2001 From: andy Date: Tue, 19 Jan 2021 16:09:53 +0900 Subject: [PATCH] fix typo --- packages/Webkul/Core/src/Helpers/Exchange/ExchangeRates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/Webkul/Core/src/Helpers/Exchange/ExchangeRates.php b/packages/Webkul/Core/src/Helpers/Exchange/ExchangeRates.php index 5c53c3a66..5fbeb32d3 100644 --- a/packages/Webkul/Core/src/Helpers/Exchange/ExchangeRates.php +++ b/packages/Webkul/Core/src/Helpers/Exchange/ExchangeRates.php @@ -67,7 +67,7 @@ class ExchangeRates extends ExchangeRate $result = json_decode($result->getBody()->getContents(), true); if (isset($result['success']) && ! $result['success']) { - throw new E\xception( + throw new \Exception( isset($result['error']['info']) ? $result['error']['info'] : $result['error']['type'], 1);