Files
solidtime/app/Exceptions/Api/CanNotRemoveOwnerFromOrganization.php
2024-05-21 18:58:47 +02:00

11 lines
201 B
PHP

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