1 | <?php |
||
9 | abstract class AbstractException extends \Exception |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $responseString; |
||
15 | |||
16 | /** |
||
17 | * @param int $errorCode |
||
18 | * @param string $errorMessage |
||
19 | * @param string $responseString |
||
20 | */ |
||
21 | public function __construct($errorCode, $errorMessage, $responseString) |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getResponseString() |
||
35 | } |
||
36 |