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

12 lines
286 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): UnknownRdapServerException
{
return new UnknownRdapServerException("TLD $tld: Unable to determine which RDAP server to contact");
}
}