diff options
author | Arron Woods <me@arronwoods.com> | 2013-12-05 22:40:45 +0000 |
---|---|---|
committer | Arron Woods <me@arronwoods.com> | 2013-12-05 22:40:45 +0000 |
commit | ad0e2ffc901c27477bba23bf762215b7e2350d21 (patch) | |
tree | fde2e3020c30110a967142cd879c216538cb33bd /library/SSRS/Soap/NTLM.php | |
parent | e0fd2e51a5546d0d85cf249a6ebf45f9e06e6017 (diff) | |
download | php-ssrs-ad0e2ffc901c27477bba23bf762215b7e2350d21.zip php-ssrs-ad0e2ffc901c27477bba23bf762215b7e2350d21.tar.gz php-ssrs-ad0e2ffc901c27477bba23bf762215b7e2350d21.tar.bz2 |
Tests almost back to passing
Diffstat (limited to 'library/SSRS/Soap/NTLM.php')
-rwxr-xr-x | library/SSRS/Soap/NTLM.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/SSRS/Soap/NTLM.php b/library/SSRS/Soap/NTLM.php index 084e92c..3820de8 100755 --- a/library/SSRS/Soap/NTLM.php +++ b/library/SSRS/Soap/NTLM.php @@ -77,11 +77,11 @@ class NTLM extends \SoapClient { $folder = dirname($path); if (!is_dir($folder)) { - throw new SSRS_Soap_Exception('WSDL cache path is not valid'); + throw new Exception('WSDL cache path is not valid'); } if (!is_writeable($folder)) { - throw new SSRS_Soap_Exception('WSDL cache path not writeable'); + throw new Exception('WSDL cache path not writeable'); } $this->_cachePath = $path; @@ -174,4 +174,4 @@ class NTLM extends \SoapClient { return $this->_lastResponse; } -} +}
\ No newline at end of file |