1 | <?php |
||
7 | class NetworkErrorException extends OrtcException |
||
8 | { |
||
9 | protected $message = 'Error in network connection'; |
||
10 | |||
11 | /** |
||
12 | * @var ClientException |
||
13 | */ |
||
14 | private $guzzleClientException; |
||
15 | |||
16 | /** |
||
17 | * @return ClientException |
||
18 | */ |
||
19 | 1 | public function getGuzzleClientException() |
|
23 | |||
24 | /** |
||
25 | * @param ClientException $guzzleClientException |
||
26 | */ |
||
27 | 1 | public function setGuzzleClientException(ClientException $guzzleClientException) |
|
31 | } |
||
32 |