You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uncaught Error: Call to a member function getMessage() on null in ***/vendor/hyperwallet/sdk/src/Hyperwallet/Exception/HyperwalletApiException.php:26
Stack trace:
#0 ***/vendor/hyperwallet/sdk/src/Hyperwallet/Util/ApiClient.php(145): Hyperwallet\Exception\HyperwalletApiException->__construct(Object(Hyperwallet\Response\ErrorResponse), Object(GuzzleHttp\Exception\ServerException))
#1 ***/vendor/hyperwallet/sdk/src/Hyperwallet/Util/ApiClient.php(107): Hyperwallet\Util\ApiClient->doRequest('GET', '/rest/v3/transf...', Array, Array)
#2 ***/vendor/hyperwallet/sdk/src/Hyperwallet/Hyperwallet.php(1347): Hyperwallet\Util\ApiClient->doGet('/rest/v3/transf...', Array, Array)
#3
The text was updated successfully, but these errors were encountered:
It's harder for me to tell, as it happened already more than two weeks in the past.
I think it relates to a 502 response that was sent shortly before the mentioned error:
msg: Undefined index: errors
context:
(
[statusCode] => 502
[errors] => array((
[error] => array((
[message] => "Bad Gateway: indicates that the server, while acting as a gateway or proxy, received an invalid response from an inbound server it accessed while attempting to fulfill the request."
[code] => "502"
)
)
)
)
)
We are using your SDK and at the mentioned line, a null pointer exception occurred.
$errorResponse[0]
is null, so calling a method on it fails.php-sdk/src/Hyperwallet/Exception/HyperwalletApiException.php
Line 33 in 839ce3c
here is the stack trace:
The text was updated successfully, but these errors were encountered: