1 | <?php |
||
7 | class CallError extends AbstractCall |
||
8 | { |
||
9 | /** |
||
10 | * @var JsonRpcException |
||
11 | */ |
||
12 | private $baseException; |
||
13 | |||
14 | /** |
||
15 | * ErrorUnit constructor. |
||
16 | * |
||
17 | * @param JsonRpcException $baseException |
||
18 | */ |
||
19 | public function __construct(JsonRpcException $baseException) |
||
23 | |||
24 | /** |
||
25 | * @return JsonRpcException |
||
26 | */ |
||
27 | public function getBaseException() |
||
31 | } |
||
32 |