Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
14 | 2 | public function __construct(string $privateKeyFile, ?Throwable $previous = null) |
|
15 | { |
||
16 | 2 | parent::__construct(sprintf( |
|
17 | 2 | 'Private key could not be loaded from file \'%s\'. Please make sure that the file contains valid private key in PEM format.', |
|
18 | $privateKeyFile |
||
19 | 2 | ), 0, $previous); |
|
20 | |||
21 | 2 | $this->privateKeyFile = $privateKeyFile; |
|
22 | 2 | } |
|
23 | |||
30 |