Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class FirstDataGuzzleRequestException extends Exception |
||
15 | { |
||
16 | /** |
||
17 | * @var \SprykerEco\Zed\FirstData\Dependency\External\Guzzle\Response\FirstDataGuzzleResponseInterface |
||
18 | */ |
||
19 | protected $response; |
||
20 | |||
21 | /** |
||
22 | * @param \SprykerEco\Zed\FirstData\Dependency\External\Guzzle\Response\FirstDataGuzzleResponseInterface $response |
||
23 | * @param string $message |
||
24 | * @param int $code |
||
25 | * @param \Throwable|null $previous |
||
26 | */ |
||
27 | public function __construct( |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @return \SprykerEco\Zed\FirstData\Dependency\External\Guzzle\Response\FirstDataGuzzleResponseInterface |
||
40 | */ |
||
41 | public function getResponse(): FirstDataGuzzleResponseInterface |
||
46 |