Files
solidtime/app/Exceptions/Api/OnlyOwnerCanChangeOwnership.php
2024-07-01 17:06:44 +02:00

11 lines
188 B
PHP

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