| 1 | <?php |
||
| 10 | final class PayboxException extends \RuntimeException |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ResponseInterface |
||
| 14 | */ |
||
| 15 | private $response; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | public function __construct(ResponseInterface $response, \Exception $previous = null) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return ResponseInterface |
||
| 30 | */ |
||
| 31 | public function getResponse() |
||
| 35 | } |
||
| 36 |