Fixed Exception namespace

This commit is contained in:
aymm 2021-03-09 19:42:52 +00:00
parent 8263e8850d
commit 1728275c7b

View File

@ -212,11 +212,11 @@ class APnutI
$effectiveURL = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); $effectiveURL = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
curl_close($ch); curl_close($ch);
if ($http_status === 0) { if ($http_status === 0) {
throw new Exception('Unable to connect to Pnut ' . $url); throw new \Exception('Unable to connect to Pnut ' . $url);
} }
if ($request === false) { if ($request === false) {
if (!curl_getinfo($ch, CURLINFO_SSL_VERIFYRESULT)) { if (!curl_getinfo($ch, CURLINFO_SSL_VERIFYRESULT)) {
throw new Exception('SSL verification failed, connection terminated: ' . $url); throw new \Exception('SSL verification failed, connection terminated: ' . $url);
} }
} }
if (!empty($response)) { if (!empty($response)) {