diff options
-rwxr-xr-x | library/SSRS/Soap/NTLM.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/SSRS/Soap/NTLM.php b/library/SSRS/Soap/NTLM.php index bb85037..339f688 100755 --- a/library/SSRS/Soap/NTLM.php +++ b/library/SSRS/Soap/NTLM.php @@ -150,7 +150,7 @@ class SSRS_Soap_NTLM extends SoapClient { $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE); if ($httpCode !== 200){ - throw new SSRS_Soap_Exception('HTTP error: ' . $httpCode); + throw new SSRS_Soap_Exception('HTTP error: ' . $httpCode . ' ' . $response, $httpCode); } curl_close($handle); |