/
tm-project
/
rbac-react-system
Обзор
Документация
Войти
/
tm-project
/
rbac-react-system
Код
Запросы
0
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
gitverse
src/domain/exceptions/RoleNotFoundException.ts
18 строк
459 B
Artem
chore: release v1.0.4
30 ноя 2025, 22:51
30 ноя 2025, 22:51
f6f509c
Код
Авторство
О чём код?
/** * rbac-react-system v1.0.4 * Copyright (c) 2025 TM Project * Licensed under the MIT License */ import { RbacException } from './RbacException' /** * Exception thrown when a role cannot be found */ export class RoleNotFoundException extends RbacException { constructor(roleId: string) { super(`Role with ID "${roleId}" not found`) this.name = 'RoleNotFoundException' Object.setPrototypeOf(this, RoleNotFoundException.prototype) } }