13 lines
202 B
PHP
13 lines
202 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Core\Commerce\Services;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Thrown when attempting to modify a locked permission.
|
||
|
|
*/
|
||
|
|
class PermissionLockedException extends Exception {}
|