Skip to content

Commit 320d49f

Browse files
author
Arron Woods
committed
Use namespace for exception
1 parent e040d60 commit 320d49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/SSRS/Soap/NTLM.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public function callCurl($url, $data = null, $action = null) {
142142

143143
$response = curl_exec($handle);
144144
if ($response === false) {
145-
throw new \SSRS\Soap\Exception('CURL error: ' . curl_error($handle), curl_errno($handle));
145+
throw new Exception('CURL error: ' . curl_error($handle), curl_errno($handle));
146146
}
147147

148148
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);

0 commit comments

Comments
 (0)