From 91d93bfb917e4b382be07aac96eaed42d6f4520a Mon Sep 17 00:00:00 2001 From: katyxa Date: Tue, 17 Apr 2018 16:29:08 +0500 Subject: [PATCH] fix --- src/DirectApiService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DirectApiService.php b/src/DirectApiService.php index fb2b973..40fce6d 100644 --- a/src/DirectApiService.php +++ b/src/DirectApiService.php @@ -429,12 +429,12 @@ public function doRequest(RequestInterface $request, int $try = 0, int $maxTry = if ($try < $maxTry) { $response = $this->doRequest($request, $try); } else { - throw new DirectApiException('Ошибка при отправке запроса к яндексу: ' . $exception->getMessage()); + throw new DirectApiException('Ошибка при подключении к яндексу: ' . $exception->getMessage() . ' Code: ' . $exception->getCode()); } } catch (RequestException $exception) { - throw new DirectApiException('Ошибка при отправке запроса к яндексу: ' . $exception->getMessage()); + throw new DirectApiException('Ошибка при отправке запроса к яндексу: ' . $exception->getMessage() . '. Response: ' . $exception->getResponse()->getBody()->getContents() . ' Code: ' . $exception->getCode()); } catch (\Throwable $exception) { - throw new DirectApiException('Ошибка при отправке запроса к яндексу' . $exception->getMessage()); + throw new DirectApiException('Ошибка при запросе к яндексу' . $exception->getMessage() . ' Code: ' . $exception->getCode()); } return $response; }