| 1 | <?php declare(strict_types = 1); |
||
| 8 | abstract class PublicKeyFileException extends Exception |
||
| 9 | { |
||
| 10 | |||
| 11 | /** @var string */ |
||
| 12 | private $publicKeyFile; |
||
| 13 | |||
| 14 | public function __construct(string $message, string $publicKeyFile, ?Throwable $previous = null) |
||
| 20 | |||
| 21 | public function getPublicKeyFile(): string |
||
| 25 | |||
| 26 | } |
||
| 27 |