diff options
author | Arron Woods <aw@chartblocks.com> | 2015-04-21 12:38:22 +0100 |
---|---|---|
committer | Arron Woods <aw@chartblocks.com> | 2015-04-21 12:38:22 +0100 |
commit | 320d49f6af9fd66ab1ba72da22fd9fa37fcad0e4 (patch) | |
tree | eadbb5176447f93b266ed72277be9f5bc2de4f56 /library/SSRS | |
parent | e040d607c8a6e96117fe440ddcd702606b2f27c7 (diff) | |
download | php-ssrs-1.0.8.zip php-ssrs-1.0.8.tar.gz php-ssrs-1.0.8.tar.bz2 |
Use namespace for exception1.0.8
Diffstat (limited to 'library/SSRS')
-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); |