aboutsummaryrefslogtreecommitdiff
path: root/errors/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'errors/errors.go')
-rw-r--r--errors/errors.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/errors/errors.go b/errors/errors.go
index 16e1646..6716fdc 100644
--- a/errors/errors.go
+++ b/errors/errors.go
@@ -42,6 +42,9 @@ var (
ErrUnauthorized = errors.New("Unauthorized")
ErrSessionExpired = errors.New("Session Expired")
+ // 403
+ ErrForbidden = errors.New("You Are Not Authorized To Access This Resource")
+
// 404
ErrNotFound = errors.New("Not Found")
ErrBrandNotFound = errors.New("This Brand Does Not Exist")
@@ -56,5 +59,5 @@ var (
ErrNonUniqueBrandItem = errors.New("Item With Same Name And Brand Already Exists")
// 500
- ErrInternalServerError = errors.New("Internal Server Error")
+ ErrInternalServerError = errors.New("Internal Server Error")
)