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

12 lines
249 B
PHP

<?php
namespace App\Exception;
class DomainNotFoundException extends \Exception
{
public static function fromDomain(string $ldhName): self
{
return new self("The domain name $ldhName is not present in the WHOIS database");
}
}