diff options
Diffstat (limited to 'errors')
| -rw-r--r-- | errors/errors.go | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/errors/errors.go b/errors/errors.go index d52004e..1cae027 100644 --- a/errors/errors.go +++ b/errors/errors.go @@ -36,6 +36,9 @@ var (  	ErrPasswordTooShort     = errors.New("Password Is Too Short")  	ErrPasswordTooLong      = errors.New("Password Is Too Long") +	// 401 +	ErrWrongPassword        = errors.New("Wrong Password") +  	// 404  	ErrNotFound             = errors.New("Not Found")  	ErrBrandNotFound        = errors.New("This Brand Does Not Exist")  |