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

18 lines
339 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;
use RuntimeException;
abstract class SerpProviderException extends RuntimeException
{
abstract public function retryable(): bool;
abstract public function safeCode(): string;
public function safeMessage(): string
{
return 'SERP kontrolü şu anda tamamlanamadı.';
}
}