Files
trafficpumper/app/Serp/Exceptions/ProviderRateLimitException.php
T

12 lines
202 B
PHP
Raw Normal View History

2026-08-29 15:53:53 +03:00
<?php
namespace App\Serp\Exceptions;
class ProviderRateLimitException extends TransientProviderException
{
public function safeCode(): string
{
return 'provider_rate_limited';
}
}