1 | <?php |
||
19 | final class PayboxException extends \RuntimeException |
||
20 | { |
||
21 | /** |
||
22 | * @var ResponseInterface |
||
23 | */ |
||
24 | private $response; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function __construct(ResponseInterface $response, \Exception $previous = null) |
||
36 | |||
37 | /** |
||
38 | * @return ResponseInterface |
||
39 | */ |
||
40 | public function getResponse() |
||
44 | } |
||
45 |