aboutsummaryrefslogtreecommitdiff
path: root/errors/errors.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-09-02 23:12:52 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-09-02 23:12:52 +0530
commit7f12e4fa01a2bf3ab25844f3d73af67881a587f1 (patch)
tree635627eecf325d0d78f45d161d8bb110d3cfcc1e /errors/errors.go
parent127d4fb8ee7f8b141f9fb2f1a8fda45d350f34fc (diff)
added sign-in
Diffstat (limited to 'errors/errors.go')
-rw-r--r--errors/errors.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/errors/errors.go b/errors/errors.go
index 08d8a4c..dd307e5 100644
--- a/errors/errors.go
+++ b/errors/errors.go
@@ -33,6 +33,8 @@ var (
ErrEmptyBrandName = errors.New("Brand Name Cannot Be Empty")
ErrInvalidUnitPrice = errors.New("Invalid Unit Price")
ErrInvalidGSTPercentage = errors.New("Invalid GST Percentage")
+ ErrPasswordTooShort = errors.New("Password Is Too Short")
+ ErrPasswordTooLong = errors.New("Password Is Too Long")
// 404
ErrNotFound = errors.New("Not Found")
@@ -42,6 +44,7 @@ var (
ErrNonUniqueGSTIN = errors.New("GSTIN Must Be Unique")
ErrNonUniquePhone = errors.New("Phone Number Must Be Unique")
ErrNonUniqueEmail = errors.New("Email Address Must Be Unique")
+ ErrNonUniqueUsername = errors.New("Email Address Must Be Unique")
ErrNonUniqueWebsite = errors.New("Website Must Be Unique")
ErrNonUniqueBrandName = errors.New("Brand Name Must Be Unique")
ErrNonUniqueBrandItem = errors.New("Item With Same Name And Brand Already Exists")