UI Admin aproape finalizat

This commit is contained in:
andrei-mihnea-cerbu
2024-04-03 02:09:12 +03:00
parent fb957a6f97
commit af8c295d75
134 changed files with 5014 additions and 1045 deletions
@@ -0,0 +1,8 @@
class UserNotExistingError extends Error {
constructor(message = 'User not found in the system!') {
super(message);
this.name = 'UserNotExistingError';
}
}
module.exports = UserNotExistingError