| 1 | <?php |
||
| 13 | class MailxpertSDKResponseException extends MailxpertSDKException |
||
| 14 | { |
||
| 15 | private $response; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param MailxpertResponse $response |
||
| 19 | * @param string $message |
||
| 20 | * @param int $code |
||
| 21 | * @param Exception|null $previous |
||
| 22 | */ |
||
| 23 | public function __construct(MailxpertResponse $response, $message = "", $code = 0, Exception $previous = null) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return MailxpertResponse |
||
| 32 | */ |
||
| 33 | public function getResponse() |
||
| 37 | } |
||
| 38 |