errors

package module
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2023 License: MIT Imports: 3 Imported by: 6

README

GoDoc Build Status Coverage Status Report Card

Documentation

Overview

Package errors provides error generators and helpers.

Index

Constants

View Source
const Version = "v0.2.0"

Version is the current version of the errors package.

Variables

This section is empty.

Functions

func Append added in v0.2.0

func Append(left error, right error) error

Append returns a combined error with right appended to left. If either is nil, the other is returned verbatim.

func As

func As(err error, target any) bool

As is a proxy for the standard library's errors.As.

As finds the first error in err's chain that matches target, and if one is found, sets target to that error value and returns true. Otherwise, it returns false.

The chain consists of err itself followed by the sequence of errors obtained by repeatedly calling Unwrap.

An error matches target if the error's concrete value is assignable to the value pointed to by target, or if the error has a method As(interface{}) bool such that As(target) returns true. In the latter case, the As method is responsible for setting target.

An error type might provide an As method so it can be treated as if it were a different error type.

As panics if target is not a non-nil pointer to either a type that implements error, or to any interface type.

func Combine added in v0.2.0

func Combine(errs ...error) error

Combine returns a combined error with each successive error appended to the previous errors. If an error is nil, it is omitted. If all errors are nil, or if errs is empty, nil is returned.

func Is

func Is(err error, target error) bool

Is is a proxy for the standard library's errors.Is.

Is reports whether any error in err's chain matches target.

The chain consists of err itself followed by the sequence of errors obtained by repeatedly calling Unwrap.

An error is considered to match a target if it is equal to that target or if it implements a method Is(error) bool such that Is(target) returns true.

An error type might provide an Is method so it can be treated as equivalent to an existing error. For example, if MyError defines

func (m MyError) Is(target error) bool { return target == fs.ErrExist }

then Is(MyError{}, fs.ErrExist) returns true. See syscall.Errno.Is for an example in the standard library. An Is method should only shallowly compare err and the target and not call Unwrap on either.

func New

func New(text string) error

New is a proxy for the standard library's errors.New.

New returns an error that formats as the given text. Each call to New returns a distinct error value even if the text is identical.

func Newf

func Newf(text string, args ...any) error

Newf is a proxy for the standard library's fmt.Errorf.

Newf formats according to a format specifier and returns the string as a value that satisfies error.

If the format specifier includes a %w verb with an error operand, the returned error will implement an Unwrap method returning the operand. It is invalid to include more than one %w verb or to supply it with an operand that does not implement the error interface. The %w verb is otherwise a synonym for %v.

func Unwrap

func Unwrap(err error) error

Unwrap is a proxy for the standard library's errors.Unwrap.

Unwrap returns the result of calling the Unwrap method on err, if err's type contains an Unwrap method returning error. Otherwise, Unwrap returns nil.

func Wrap

func Wrap(base error, msg string) error

Wrap returns a new error that wraps base, using msg as its error message. Wrap produces an error of the format "msg: base" in order to provide the consistent and coherent layering of errors.

If base is nil, Wrap returns a nil error. If msg is an empty string, base is returned verbatim.

func WrapAppend added in v0.2.0

func WrapAppend(left error, right error, msg string) error

WrapAppend is syntactic sugar for Wrap(Append(left, right), msg).

func WrapCombine added in v0.2.0

func WrapCombine(msg string, errs ...error) error

WrapCombine is syntactic sugar for Wrap(Combine(errs...), msg).

func Wrapf

func Wrapf(base error, msg string, args ...any) error

Wrapf returns a new error that wraps base, using msg and args to format its error message. Wrap produces an error of the format "msg: base", where msg includes the interpolation of all sprintf placeholders and variables, in order to provide the consistent and coherent layering of errors.

Wrapf supports wrapping errors with the %w verb.

If base is nil, Wrapf returns a nil error. If msg is an empty string and args is empty, base is returned verbatim.

func WrapfAppend added in v0.2.0

func WrapfAppend(left error, right error, msg string, args ...any) error

WrapfAppend is syntactic sugar for Wrapf(Append(left, right), msg, args...).

Types

This section is empty.

Directories

Path Synopsis
Package errgroup provides error synchronization and combination tools.
Package errgroup provides error synchronization and combination tools.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL