cwtch/model/constants/errors.go

8 lines
335 B
Go
Raw Permalink Normal View History

2021-12-19 00:51:36 +00:00
package constants
// InvalidPasswordError is returned when an incorrect password is provided to a function that requires the current active password
const InvalidPasswordError = "invalid_password_error"
// PasswordsDoNotMatchError is returned when two passwords do not match
const PasswordsDoNotMatchError = "passwords_do_not_match"