Align commerce module with the monorepo module structure by updating all namespaces to use the Core\Mod\Commerce convention. This change supports the recent monorepo separation and ensures consistency with other modules. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
206 B
PHP
12 lines
206 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Core\Mod\Commerce\Services;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Thrown when attempting to modify a locked permission.
|
|
*/
|
|
class PermissionLockedException extends Exception {}
|