Files
domain-watchdog/src/Exception/UnknownRdapServerException.php

12 lines
242 B
PHP
Raw Normal View History

2025-10-07 15:55:17 +02:00
<?php
namespace App\Exception;
class UnknownRdapServerException extends \Exception
{
public static function fromTld(string $tld): self
2025-10-07 15:55:17 +02:00
{
return new self("TLD $tld: Unable to determine which RDAP server to contact");
2025-10-07 15:55:17 +02:00
}
}