diff options
Diffstat (limited to 'library')
-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 73e6a67..bf04288 100755 --- a/library/SSRS/Soap/NTLM.php +++ b/library/SSRS/Soap/NTLM.php @@ -142,7 +142,7 @@ class NTLM extends \SoapClient { $response = curl_exec($handle); if ($response === false) { - throw new \SSRS\Soap\Exception('CURL error: ' . curl_error($handle), curl_errno($handle)); + throw new Exception('CURL error: ' . curl_error($handle), curl_errno($handle)); } $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE); |