Files

17 lines
266 B
PHP
Raw Permalink Normal View History

2026-08-29 15:53:53 +03:00
<?php
namespace App\Serp\Exceptions;
class PermanentProviderException extends SerpProviderException
{
public function retryable(): bool
{
return false;
}
public function safeCode(): string
{
return 'provider_rejected';
}
}