-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnot_found.go
47 lines (37 loc) · 1.23 KB
/
not_found.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package zerrors
import (
"errors"
"fmt"
"github.com/samber/oops"
)
const ErrNotFound = "not found"
func ThrowNotFound(action, kind, name string) error {
message := fmt.Sprintf("cannot %s '%s' of kind '%s'", action, name, kind)
return oops.Code(ErrNotFound).Wrap(errors.New(message))
}
func ThrowNotFoundr(action, kind, name, reason string) error {
message := fmt.Sprintf("cannot %s '%s' of kind '%s': %s", action, name, kind, reason)
return oops.Code(ErrNotFound).Wrap(errors.New(message))
}
func NotFound(message string, KVs ...interface{}) error {
return oops.Code(ErrNotFound).With(KVs...).Wrap(errors.New(message))
}
func NotFoundf(format string, a ...interface{}) error {
return oops.Code(ErrNotFound).Wrap(fmt.Errorf(format, a...))
}
func NotFoundBuilder() oops.OopsErrorBuilder {
return oops.Code(ErrNotFound)
}
func ToNotFound(parent error, KVs ...interface{}) error {
return oops.Code(ErrNotFound).With(KVs...).Wrap(parent)
}
func ToNotFoundf(parent error, format string, a ...interface{}) error {
return oops.Code(ErrNotFound).Wrapf(parent, format, a...)
}
func IsNotFound(err error) bool {
var possibleError oops.OopsError
if errors.As(err, &possibleError) {
return possibleError.Code() == ErrNotFound
}
return false
}