mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-15 13:32:43 +01:00
11 lines
214 B
PHP
11 lines
214 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Exceptions\Api;
|
|
|
|
class PersonalAccessClientIsNotConfiguredException extends ApiException
|
|
{
|
|
public const string KEY = 'personal_access_client_is_not_configured';
|
|
}
|