summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Soap/Exception.php
blob: 5e6170d72df452dd2967745d3a9e4db8444f7108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class SSRS_Soap_Exception extends Exception{
    
    public $httpCode;
    public $response;
    
    public function __construct($message, $code, $response = null) {
        $this->httpCode = $code;
        $this->response = $response;
        
        parent::__construct($message, $code);
    }
    
}