summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarron.woods@gmail.com <arron.woods@gmail.com@deae1e92-32f9-c189-e222-5b9b5081a27a>2012-11-15 14:30:41 +0000
committerarron.woods@gmail.com <arron.woods@gmail.com@deae1e92-32f9-c189-e222-5b9b5081a27a>2012-11-15 14:30:41 +0000
commita6cc5553bb6992149445e50e74b905095fe93d94 (patch)
treeca25723c9804afce29c788d68377e7fab1bf824d
parent5942c77149cfc3cfca490c6b10ce7ed62b6b6f6f (diff)
downloadphp-ssrs-a6cc5553bb6992149445e50e74b905095fe93d94.zip
php-ssrs-a6cc5553bb6992149445e50e74b905095fe93d94.tar.gz
php-ssrs-a6cc5553bb6992149445e50e74b905095fe93d94.tar.bz2
Response optional on exception
-rwxr-xr-xlibrary/SSRS/Soap/Exception.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/SSRS/Soap/Exception.php b/library/SSRS/Soap/Exception.php
index 9d0902a..5e6170d 100755
--- a/library/SSRS/Soap/Exception.php
+++ b/library/SSRS/Soap/Exception.php
@@ -5,7 +5,7 @@ class SSRS_Soap_Exception extends Exception{
public $httpCode;
public $response;
- public function __construct($message, $code, $response) {
+ public function __construct($message, $code, $response = null) {
$this->httpCode = $code;
$this->response = $response;