-
Notifications
You must be signed in to change notification settings - Fork 0
/
failed_precondition.go
47 lines (37 loc) · 1.4 KB
/
failed_precondition.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 ErrFailedPrecondition = "failed precondition"
func ThrowFailedPrecondition(action, kind, name string) error {
message := fmt.Sprintf("cannot %s '%s' of kind '%s'", action, name, kind)
return oops.Code(ErrFailedPrecondition).Wrap(errors.New(message))
}
func ThrowFailedPreconditionr(action, kind, name, reason string) error {
message := fmt.Sprintf("cannot %s '%s' of kind '%s': %s", action, name, kind, reason)
return oops.Code(ErrFailedPrecondition).Wrap(errors.New(message))
}
func FailedPrecondition(message string, KVs ...interface{}) error {
return oops.Code(ErrFailedPrecondition).With(KVs...).Wrap(errors.New(message))
}
func FailedPreconditionf(format string, a ...interface{}) error {
return oops.Code(ErrFailedPrecondition).Wrap(fmt.Errorf(format, a...))
}
func FailedPreconditionBuilder() oops.OopsErrorBuilder {
return oops.Code(ErrFailedPrecondition)
}
func ToFailedPrecondition(parent error, KVs ...interface{}) error {
return oops.Code(ErrFailedPrecondition).With(KVs...).Wrap(parent)
}
func ToFailedPreconditionf(parent error, format string, a ...interface{}) error {
return oops.Code(ErrFailedPrecondition).Wrapf(parent, format, a...)
}
func IsFailedPrecondition(err error) bool {
var possibleError oops.OopsError
if errors.As(err, &possibleError) {
return possibleError.Code() == ErrFailedPrecondition
}
return false
}