12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
|
|
namespace App\Serp\Exceptions;
|
|
|
|
class ProviderAuthenticationException extends PermanentProviderException
|
|
{
|
|
public function safeCode(): string
|
|
{
|
|
return 'provider_configuration_error';
|
|
}
|
|
}
|