17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Serp\Exceptions;
|
|
|
|
class PermanentProviderException extends SerpProviderException
|
|
{
|
|
public function retryable(): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function safeCode(): string
|
|
{
|
|
return 'provider_rejected';
|
|
}
|
|
}
|