Documentation ¶
Overview ¶
Package errors provides common utilities for dealing with errors
Index ¶
- func AggregateConcurrent(funcs []func() error) error
- func Errorf(format string, args ...interface{}) error
- func Errors(err error) []error
- func New(message string) error
- func NewAggregate(errlist []error) error
- func StackTrace(err error) pkgerrors.StackTrace
- func UntilErrorConcurrent(funcs []func() error) error
- func WithStack(err error) error
- func Wrap(err error, message string) error
- func Wrapf(err error, format string, args ...interface{}) error
- type Causer
- type StackTracer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AggregateConcurrent ¶
AggregateConcurrent runs fns concurrently, returning a NewAggregate if there are > 1 errors
func Errorf ¶
Errorf formats according to a format specifier and returns the string as a value that satisfies error. Errorf also records the stack trace at the point it was called.
func New ¶
New returns an error with the supplied message. New also records the stack trace at the point it was called.
func NewAggregate ¶
NewAggregate is a k8s.io/apimachinery/pkg/util/errors.NewAggregate wrapper note that while it returns a StackTrace wrapped Aggregate That has been Flattened and Reduced
func StackTrace ¶
func StackTrace(err error) pkgerrors.StackTrace
StackTrace returns the deepest StackTrace in a Cause chain https://github.com/pkg/errors/issues/173
func UntilErrorConcurrent ¶
UntilErrorConcurrent runs all funcs in separate goroutines, returning the first non-nil error returned from funcs, or nil if all funcs return nil
func WithStack ¶
WithStack annotates err with a stack trace at the point WithStack was called. If err is nil, WithStack returns nil.
Types ¶
type Causer ¶
type Causer interface { // Cause returns the underlying error Cause() error }
Causer is an interface to github.com/pkg/errors error's Cause() wrapping
type StackTracer ¶
type StackTracer interface { // StackTrace returns the StackTrace ... // TODO: return our own type instead? // https://github.com/pkg/errors#roadmap StackTrace() pkgerrors.StackTrace }
StackTracer is an interface to github.com/pkg/errors error's StackTrace()