aboutsummaryrefslogtreecommitdiff
path: root/internal/db/errors/org.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/errors/org.go')
-rw-r--r--internal/db/errors/org.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/internal/db/errors/org.go b/internal/db/errors/org.go
new file mode 100644
index 00000000..56532746
--- /dev/null
+++ b/internal/db/errors/org.go
@@ -0,0 +1,21 @@
+// Copyright 2018 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package errors
+
+import "fmt"
+
+type TeamNotExist struct {
+ TeamID int64
+ Name string
+}
+
+func IsTeamNotExist(err error) bool {
+ _, ok := err.(TeamNotExist)
+ return ok
+}
+
+func (err TeamNotExist) Error() string {
+ return fmt.Sprintf("team does not exist [team_id: %d, name: %s]", err.TeamID, err.Name)
+}