package
1.20.0-rc.0
Repository: https://github.com/crossplane/crossplane-runtime.git
Documentation: pkg.go.dev

# Functions

As finds the first error in err's chain that matches target, and if so, sets target to that error value and returns true.
Cause calls Unwrap on each error it finds.
Errorf formats according to a format specifier and returns the string as a value that satisfies error.
Is reports whether any error in err's chain matches target.
Join returns an error that wraps the given errors.
New returns an error that formats as the given text.
SilentlyRequeueOnConflict returns a requeue result and silently drops the error if it is a Kubernetes conflict error from the optimistic concurrency protocol.
Unwrap returns the result of calling the Unwrap method on err, if err's type contains an Unwrap method returning error.
WithMessage annotates err with a new message.
WithMessagef annotates err with the format specifier.
WithSilentRequeueOnConflict wraps a Reconciler and silently drops conflict errors and requeues instead.
Wrap is an alias for WithMessage.
Wrapf is an alias for WithMessagef.

# Interfaces

MultiError is an error that wraps multiple errors.