Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function __construct( |
||
21 | string $message = '', |
||
22 | int $code = 0, |
||
23 | ?string $endpoint = null, |
||
24 | ?array $response = null, |
||
25 | ?Exception $previous = null |
||
26 | ) { |
||
27 | parent::__construct($message, $code, $previous); |
||
28 | $this->endpoint = $endpoint; |
||
29 | $this->response = $response; |
||
30 | } |
||
56 |