Files
FACULTATE-LICENTA/UC/backend/src/exceptions/userNotExistingError.js
T

8 lines
218 B
JavaScript

class UserNotExistingError extends Error {
constructor(message = 'User not found in the system!') {
super(message);
this.name = 'UserNotExistingError';
}
}
module.exports = UserNotExistingError