aboutsummaryrefslogtreecommitdiffstats
path: root/bug/err.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/err.go')
-rw-r--r--bug/err.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/bug/err.go b/bug/err.go
deleted file mode 100644
index 1bd174bb..00000000
--- a/bug/err.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package bug
-
-import (
- "errors"
-
- "github.com/MichaelMure/git-bug/entity"
-)
-
-var ErrBugNotExist = errors.New("bug doesn't exist")
-
-func NewErrMultipleMatchBug(matching []entity.Id) *entity.ErrMultipleMatch {
- return entity.NewErrMultipleMatch("bug", matching)
-}
-
-func NewErrMultipleMatchOp(matching []entity.Id) *entity.ErrMultipleMatch {
- return entity.NewErrMultipleMatch("operation", matching)
-}