Added RoleSyncPermissionsCommandHandlerException.

This commit is contained in:
Leonid Nikitin 2024-06-11 23:40:45 +05:00
parent c5fc106761
commit 05f566c115
Signed by: kor-elf
GPG Key ID: 3C0F720C170F6E1D
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,8 @@
<?php declare(strict_types=1);
namespace App\Exceptions\Services\Rule;
final class RoleSyncPermissionsCommandHandlerException extends \Exception
{
}

View File

@ -3,7 +3,7 @@
namespace App\Services\Role; namespace App\Services\Role;
use App\Enums\Permission; use App\Enums\Permission;
use App\Exceptions\Rule\RoleSyncPermissionsCommandHandlerException; use App\Exceptions\Services\Rule\RoleSyncPermissionsCommandHandlerException;
use App\Models\Role; use App\Models\Role;
use App\Models\RolePermission; use App\Models\RolePermission;