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