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

namespace SSRS\Soap;

class Exception extends \Exception {

    public $httpCode;
    public $response;

    public function __construct($message, $code, $response = null) {
        $this->httpCode = $code;
        $this->response = $response;

        parent::__construct($message, $code);
    }

}