Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function __construct(int $code, string $error, ?string $errorDescription, Authorization $authorization, ? \Exception $previous = null) |
||
40 | { |
||
41 | $this->authorization = $authorization; |
||
42 | $this->errorDescription = $errorDescription; |
||
43 | |||
44 | parent::__construct($error, $code, $previous); |
||
45 | } |
||
46 | |||
63 |