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

12 lines
317 B
PHP

<?php
namespace App\Exception\Provider;
class EppContactIsAvailableException extends AbstractProviderException
{
public static function fromContact(string $handle): self
{
return new self("At least one of the entered contacts cannot be used because it is indicated as available ($handle)");
}
}