git-bug/bug/err.go

18 lines
399 B
Go
Raw Normal View History

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)
}