2023-12-18 14:08:07 +00:00
|
|
|
package errmsg
|
|
|
|
|
|
|
|
const (
|
2024-01-19 16:56:11 +00:00
|
|
|
ErrorMsgNotFound = "record not found"
|
|
|
|
ErrorMsgSomethingWentWrong = "something went wrong"
|
|
|
|
ErrorMsgInvalidInput = "invalid input"
|
|
|
|
ErrorMsgInvalidStatus = "invalid status"
|
|
|
|
ErrorMsgPhoneNumberIsNotUnique = "phone number is not unique"
|
|
|
|
ErrorMsgEmailIsNotUnique = "email is not unique"
|
|
|
|
ErrorMsgPhoneNumberIsNotValid = "phone number is not valid"
|
|
|
|
ErrorMsgUserNotAllowed = "user not allowed"
|
|
|
|
ErrorMsgUserNotFound = "benefactor not found"
|
|
|
|
ErrorMsgOtpCodeExist = "please wait a little bit"
|
|
|
|
ErrorMsgOtpCodeIsNotValid = "verification code is not valid"
|
|
|
|
ErrorMsgCantScanQueryResult = "can't scan query result"
|
|
|
|
ErrorMsgPhoneNumberOrPassIsIncorrect = "phone number or password is incorrect"
|
2024-01-22 14:07:51 +00:00
|
|
|
ErrorMsgReAcceptKindBoxReq = "accepted request cannot be re-accepted"
|
2024-01-22 15:21:13 +00:00
|
|
|
ErrorMsgReRejectKindBoxReq = "rejected request cannot be re-rejected"
|
2023-12-18 14:08:07 +00:00
|
|
|
)
|