Files
domain-watchdog/src/Exception/UnknownRdapServerException.php
2025-10-13 13:51:51 +02:00

12 lines
242 B
PHP

<?php
namespace App\Exception;
class UnknownRdapServerException extends \Exception
{
public static function fromTld(string $tld): self
{
return new self("TLD $tld: Unable to determine which RDAP server to contact");
}
}