17 lines
333 B
PHP
17 lines
333 B
PHP
<?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ış.';
|
|||
|
|
}
|
|||
|
|
}
|