12 lines
202 B
PHP
12 lines
202 B
PHP
<?php
|
|
|
|
namespace App\Serp\Exceptions;
|
|
|
|
class ProviderRateLimitException extends TransientProviderException
|
|
{
|
|
public function safeCode(): string
|
|
{
|
|
return 'provider_rate_limited';
|
|
}
|
|
}
|