diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-05 15:29:50 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-05 15:29:50 +0530 |
commit | b643f7852f93f73843aa5f52f9b4545321713e10 (patch) | |
tree | 09938550f85f699fd665127888c4c668f0f1b2a9 /errors/errors.go | |
parent | d8c1d5fedfac65a79490120195e273b5d5fc75e9 (diff) |
added invoice route (barebones)v0.0.11
Diffstat (limited to 'errors/errors.go')
-rw-r--r-- | errors/errors.go | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/errors/errors.go b/errors/errors.go index 9a5a215..9fed3a3 100644 --- a/errors/errors.go +++ b/errors/errors.go @@ -54,13 +54,14 @@ var ( ErrBrandNotFound = errors.New("This Brand Does Not Exist") // 409 - ErrNonUniqueGSTIN = errors.New("GSTIN Must Be Unique") - ErrNonUniquePhone = errors.New("Phone Number Is Already In Use") - ErrNonUniqueEmail = errors.New("Email Address Is Already In Use") - ErrNonUniqueUsername = errors.New("Username Is Already In Use") - ErrNonUniqueWebsite = errors.New("Website Is Already In Use") - ErrNonUniqueBrandName = errors.New("Brand Name Is Already In Use") - ErrNonUniqueBrandItem = errors.New("Item With Same Name And Brand Already Exists") + ErrNonUniqueGSTIN = errors.New("GSTIN Must Be Unique") + ErrNonUniquePhone = errors.New("Phone Number Is Already In Use") + ErrNonUniqueEmail = errors.New("Email Address Is Already In Use") + ErrNonUniqueUsername = errors.New("Username Is Already In Use") + ErrNonUniqueWebsite = errors.New("Website Is Already In Use") + ErrNonUniqueBrandName = errors.New("Brand Name Is Already In Use") + ErrNonUniqueBrandItem = errors.New("Item With Same Name And Brand Already Exists") + ErrNonUniqueInvoiceNumber = errors.New("Invoice Number Must Be Unique") // 500 ErrInternalServerError = errors.New("Internal Server Error") |