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