12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Core.Global
- {
- public enum ExceptionEnum
- {
- RecordNotExist = 1,
- ModelNotValid = 2,
- NotAuthorized = 3,
- PropertyNotAccess = 4,
- WrongCredentials = 5,
- RecordCannotBeDelete = 6,
- RecordAlreadyExist = 7,
- RecordCreationFailed = 8,
- RecordUpdateFailed = 9,
- RecordDeleteFailed = 10,
- RecordNameAlreadyExist = 11,
- RecordEmailAlreadyExist = 12,
- AttachmentsRequired = 13,
- CouldNotMoveFiles = 14,
- MapperIssue = 15,
- InCorrectFileLength = 16,
- WrongOTP = 17,
- EmptyResponse=18,
- ErrorSendingSMS=19,
- InvalidCaptcha = 20,
- AccountLocked = 21,
- InvalidFileType = 22,
- NoVacationBalance = 23,
- EmailNotExist = 24,
- RecordPhoneAlreadyExist = 25,
- UserNotExist=26,
- UserAlreadyCheckedIn= 27,
- }
- }
|