| 1 | <?php |
||
| 8 | class CouldNotDownloadCertificate extends Exception |
||
| 9 | { |
||
| 10 | use TrackDomainTrait; |
||
| 11 | |||
| 12 | public static function hostDoesNotExist(string $hostName): CouldNotDownloadCertificate |
||
| 19 | |||
| 20 | public static function noCertificateInstalled(string $hostName): CouldNotDownloadCertificate |
||
| 27 | |||
| 28 | public static function failedHandshake(Url $url): CouldNotDownloadCertificate |
||
| 38 | |||
| 39 | public static function connectionTimeout(string $hostName): CouldNotDownloadCertificate |
||
| 46 | |||
| 47 | public static function unknownError(string $hostName, string $errorMessage): CouldNotDownloadCertificate |
||
| 54 | } |
||
| 55 |