Files
solidtime/app/Exceptions/Api/InactiveUserCanNotBeUsedApiException.php
2024-04-11 12:43:30 +02:00

11 lines
195 B
PHP

<?php
declare(strict_types=1);
namespace App\Exceptions\Api;
class InactiveUserCanNotBeUsedApiException extends ApiException
{
public const string KEY = 'inactive_user_can_not_be_used';
}