Files
trafficpumper/app/Serp/Exceptions/ProviderConfigurationException.php
2026-08-29 15:53:53 +03:00

17 lines
333 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Serp\Exceptions;
class ProviderConfigurationException extends PermanentProviderException
{
public function safeCode(): string
{
return 'provider_not_configured';
}
public function safeMessage(): string
{
return 'SERP kontrol hizmeti henüz yapılandırılmamış.';
}
}