feat(backend): LearningPathPersonalizingService geïmplementeerd

This commit is contained in:
Gerald Schmittinger 2025-03-11 04:08:32 +01:00
parent cd0a3a8a7b
commit a30c4d0d32
5 changed files with 129 additions and 116 deletions

View file

@ -24,6 +24,7 @@ export class UnauthorizedException extends Error {
*/
export class ForbiddenException extends Error {
status = 403;
constructor(message: string = 'Forbidden') {
super(message);
}