From 320d49f6af9fd66ab1ba72da22fd9fa37fcad0e4 Mon Sep 17 00:00:00 2001 From: Arron Woods Date: Tue, 21 Apr 2015 12:38:22 +0100 Subject: Use namespace for exception --- library/SSRS/Soap/NTLM.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.1