mirror of
https://git.wownero.com/wownero/wownerowp.git
synced 2024-08-15 01:03:16 +00:00
Update library.php
This commit is contained in:
parent
b0c623fb5f
commit
d6438eba52
1 changed files with 4 additions and 4 deletions
|
@ -75,7 +75,7 @@ class Monero_Library
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new InvalidArgumentException('Invalid options type.');
|
echo 'Invalid options type.';
|
||||||
}
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
@ -146,12 +146,12 @@ class Monero_Library
|
||||||
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
||||||
if (isset($this->httpErrors[$httpCode]))
|
if (isset($this->httpErrors[$httpCode]))
|
||||||
{
|
{
|
||||||
throw new RuntimeException('Response Http Error - ' . $this->httpErrors[$httpCode]);
|
echo 'Response Http Error - ' . $this->httpErrors[$httpCode];
|
||||||
}
|
}
|
||||||
// check for curl error
|
// check for curl error
|
||||||
if (0 < curl_errno($ch))
|
if (0 < curl_errno($ch))
|
||||||
{
|
{
|
||||||
throw new RuntimeException('Unable to connect to '.$this->url . ' Error: ' . curl_error($ch));
|
echo 'Unable to connect to '.$this->url . ' Error: ' . curl_error($ch);
|
||||||
}
|
}
|
||||||
// close the connection
|
// close the connection
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
|
@ -162,7 +162,7 @@ class Monero_Library
|
||||||
{
|
{
|
||||||
if ($pFailed)
|
if ($pFailed)
|
||||||
{
|
{
|
||||||
throw new RuntimeException($pErrMsg);
|
echo $pErrMsg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue