README
Emperror: Errors 
Drop-in replacement for the standard library errors
package and github.com/pkg/errors.
This is a single, lightweight library merging the features of standard library errors
package
and github.com/pkg/errors. It also backports a few features
(like Go 1.13 error handling related features).
Standard library features:
New
creates an error with stack traceUnwrap
supports both Go 1.13 wrapper (interface { Unwrap() error }
) and pkg/errors causer (interface { Cause() error }
) interface- Backported
Is
andAs
functions
github.com/pkg/errors features:
New
,Errorf
,WithMessage
,WithMessagef
,WithStack
,Wrap
,Wrapf
functions behave the same way as in the original libraryCause
supports both Go 1.13 wrapper (interface { Unwrap() error }
) and pkg/errors causer (interface { Cause() error }
) interface
Additional features:
NewPlain
creates a new error without any attached context, like stack traceSentinel
is a shorthand type for creating constant errorWithStackDepth
allows attaching stack trace with a custom caller depthWithStackDepthIf
,WithStackIf
,WrapIf
,WrapIff
only annotate errors with a stack trace if there isn't one already in the error chain- Multi error aggregating multiple errors into a single value
NewWithDetails
,WithDetails
andWrap*WithDetails
functions to add key-value pairs to an error- Match errors using the
match
package
Installation
go get emperror.dev/errors
Usage
package main
import "emperror.dev/errors"
// ErrSomethingWentWrong is a sentinel error which can be useful within a single API layer.
const ErrSomethingWentWrong = errors.Sentinel("something went wrong")
// ErrMyError is an error that can be returned from a public API.
type ErrMyError struct {
Msg string
}
func (e ErrMyError) Error() string {
return e.Msg
}
func foo() error {
// Attach stack trace to the sentinel error.
return errors.WithStack(ErrSomethingWentWrong)
}
func bar() error {
return errors.Wrap(ErrMyError{"something went wrong"}, "error")
}
func main() {
if err := foo(); err != nil {
if errors.Cause(err) == ErrSomethingWentWrong { // or errors.Is(ErrSomethingWentWrong)
// handle error
}
}
if err := bar(); err != nil {
if errors.As(err, &ErrMyError{}) {
// handle error
}
}
}
Match errors:
package main
import (
"emperror.dev/errors"
"emperror.dev/errors/match"
)
// ErrSomethingWentWrong is a sentinel error which can be useful within a single API layer.
const ErrSomethingWentWrong = errors.Sentinel("something went wrong")
type clientError interface{
ClientError() bool
}
func foo() error {
// Attach stack trace to the sentinel error.
return errors.WithStack(ErrSomethingWentWrong)
}
func main() {
var ce clientError
matcher := match.Any{match.As(&ce), match.Is(ErrSomethingWentWrong)}
if err := foo(); err != nil {
if matcher.MatchError(err) {
// you can use matchers to write complex conditions for handling (or not) an error
// used in emperror
}
}
}
Development
When all coding and testing is done, please run the test suite:
$ make check
License
The MIT License (MIT). Please see License File for more information.
Certain parts of this library are inspired by (or entirely copied from) various third party libraries. Their licenses can be found in the Third Party License File.
Documentation
Overview ¶
Package errors is a drop-in replacement for the standard errors package and github.com/pkg/errors.
Overview ¶
This is a single, lightweight library merging the features of standard library `errors` package and https://github.com/pkg/errors. It also backports a few features (like Go 1.13 error handling related features).
Printing errors ¶
If not stated otherwise, errors can be formatted with the following specifiers:
%s error message %q double-quoted error message %v error message in default format %+v error message and stack trace
Index ¶
- func Append(left error, right error) error
- func As(err error, target interface{}) bool
- func Cause(err error) error
- func Combine(errors ...error) error
- func Errorf(format string, a ...interface{}) error
- func GetDetails(err error) []interface{}
- func GetErrors(err error) []error
- func Is(err, target error) bool
- func New(message string) error
- func NewPlain(message string) error
- func NewWithDetails(message string, details ...interface{}) error
- func Unwrap(err error) error
- func UnwrapEach(err error, fn func(err error) bool)
- func WithDetails(err error, details ...interface{}) error
- func WithMessage(err error, message string) error
- func WithMessagef(err error, format string, a ...interface{}) error
- func WithStack(err error) error
- func WithStackDepth(err error, depth int) error
- func WithStackDepthIf(err error, depth int) error
- func WithStackIf(err error) error
- func Wrap(err error, message string) error
- func WrapIf(err error, message string) error
- func WrapIfWithDetails(err error, message string, details ...interface{}) error
- func WrapIff(err error, format string, a ...interface{}) error
- func WrapWithDetails(err error, message string, details ...interface{}) error
- func Wrapf(err error, format string, a ...interface{}) error
- type Frame
- type Sentinel
- type StackTrace
Examples ¶
Constants ¶
Variables ¶
Functions ¶
func Append ¶
Append appends the given errors together. Either value may be nil.
This function is a specialization of Combine for the common case where there are only two errors.
err = errors.Append(reader.Close(), writer.Close())
The following pattern may also be used to record failure of deferred operations without losing information about the original error.
func doSomething(..) (err error) { f := acquireResource() defer func() { err = errors.Append(err, f.Close()) }()
func As ¶
As finds the first error in err's chain that matches the type to which target points, and if so, sets the target to its value and returns true. An error matches a type if it is assignable to the target type, or if it has a method As(interface{}) bool such that As(target) returns true. As will panic if target is not a non-nil pointer to a type which implements error or is of interface type.
The As method should set the target to its value and return true if err matches the type to which target points.
func Cause ¶
Cause returns the last error (root cause) in an err's chain. If err has no chain, it is returned directly.
It supports both Go 1.13 errors.Wrapper and github.com/pkg/errors.Causer interfaces (the former takes precedence).
func Combine ¶
Combine combines the passed errors into a single error.
If zero arguments were passed or if all items are nil, a nil error is returned.
If only a single error was passed, it is returned as-is.
Combine omits nil errors so this function may be used to combine together errors from operations that fail independently of each other.
errors.Combine( reader.Close(), writer.Close(), pipe.Close(), )
If any of the passed errors is already an aggregated error, it will be flattened along with the other errors.
errors.Combine(errors.Combine(err1, err2), err3) // is the same as errors.Combine(err1, err2, err3)
The returned error formats into a readable multi-line error message if formatted with %+v.
fmt.Sprintf("%+v", errors.Combine(err1, err2))
Example (Loop) ¶
Output: the following errors occurred: - call 1 failed - call 3 failed - call 5 failed
func Errorf ¶
Errorf returns a new error with a formatted message and annotated with stack trace at the point Errorf is called.
err := errors.Errorf("something went %s", "wrong")
func GetDetails ¶
func GetDetails(err error) []interface{}
GetDetails extracts the key-value pairs from err's chain.
func GetErrors ¶
GetErrors returns a slice containing zero or more errors that the supplied error is composed of. If the error is nil, the returned slice is empty.
err := errors.Append(r.Close(), w.Close()) errors := errors.GetErrors(err)
If the error is not composed of other errors, the returned slice contains just the error that was passed in.
Callers of this function are free to modify the returned slice.
func Is ¶
Is reports whether any error in err's chain matches target.
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.
func New ¶
New returns a new error annotated with stack trace at the point New is called.
New is a shorthand for:
WithStack(NewPlain(message))
func NewPlain ¶
NewPlain returns a simple error without any annotated context, like stack trace. Useful for creating sentinel errors and in testing.
var ErrSomething = errors.NewPlain("something went wrong")
func NewWithDetails ¶
NewWithDetails returns a new error annotated with stack trace at the point NewWithDetails is called, and the supplied details.
func Unwrap ¶
Unwrap returns the result of calling the Unwrap method on err, if err implements Unwrap. Otherwise, Unwrap returns nil.
It supports both Go 1.13 Unwrap and github.com/pkg/errors.Causer interfaces (the former takes precedence).
func UnwrapEach ¶
UnwrapEach loops through an error chain and calls a function for each of them.
The provided function can return false to break the loop before it reaches the end of the chain.
It supports both Go 1.13 errors.Wrapper and github.com/pkg/errors.Causer interfaces (the former takes precedence).
func WithDetails ¶
WithDetails annotates err with with arbitrary key-value pairs.
func WithMessage ¶
WithMessage annotates err with a new message. If err is nil, WithMessage returns nil.
WithMessage is useful when the error already contains a stack trace, but adding additional info to the message helps in debugging.
Errors returned by WithMessage are formatted slightly differently:
%s error messages separated by a colon and a space (": ") %q double-quoted error messages separated by a colon and a space (": ") %v one error message per line %+v one error message per line and stack trace (if any)
func WithMessagef ¶
WithMessagef annotates err with the format specifier. If err is nil, WithMessagef returns nil.
WithMessagef is useful when the error already contains a stack trace, but adding additional info to the message helps in debugging.
The same formatting rules apply as in case of WithMessage.
func WithStack ¶
WithStack annotates err with a stack trace at the point WithStack was called. If err is nil, WithStack returns nil.
WithStack is commonly used with sentinel errors and errors returned from libraries not annotating errors with stack trace:
var ErrSomething = errors.NewPlain("something went wrong") func doSomething() error { return errors.WithStack(ErrSomething) }
func WithStackDepth ¶
WithStackDepth annotates err with a stack trace at the given call depth. Zero identifies the caller of WithStackDepth itself. If err is nil, WithStackDepth returns nil.
WithStackDepth is generally used in other error constructors:
func MyWrapper(err error) error { return WithStackDepth(err, 1) }
func WithStackDepthIf ¶
WithStackDepthIf behaves the same way as WithStackDepth except it does not annotate the error with a stack trace if there is already one in err's chain.
func WithStackIf ¶
WithStackIf behaves the same way as WithStack except it does not annotate the error with a stack trace if there is already one in err's chain.
func Wrap ¶
Wrap returns an error annotating err with a stack trace at the point Wrap is called, and the supplied message. If err is nil, Wrap returns nil.
Wrap is a shorthand for:
WithStack(WithMessage(err, message))
func WrapIf ¶
WrapIf behaves the same way as Wrap except it does not annotate the error with a stack trace if there is already one in err's chain.
If err is nil, WrapIf returns nil.
func WrapIfWithDetails ¶
WrapIfWithDetails returns an error annotating err with a stack trace at the point WrapIfWithDetails is called, and the supplied message and details. If err is nil, WrapIfWithDetails returns nil.
WrapIfWithDetails is a shorthand for:
WithDetails(WithStackIf(WithMessage(err, message, details...))
func WrapIff ¶
WrapIff behaves the same way as Wrapf except it does not annotate the error with a stack trace if there is already one in err's chain.
If err is nil, WrapIff returns nil.
func WrapWithDetails ¶
WrapWithDetails returns an error annotating err with a stack trace at the point WrapWithDetails is called, and the supplied message and details. If err is nil, WrapWithDetails returns nil.
WrapWithDetails is a shorthand for:
WithDetails(WithStack(WithMessage(err, message, details...))
Types ¶
type Frame ¶
Frame represents a program counter inside a stack frame. For historical reasons if Frame is interpreted as a uintptr its value represents the program counter + 1.
It is an alias of the same type in github.com/pkg/errors.
type Sentinel ¶
type Sentinel string
Sentinel is a simple error without any annotated context, like stack trace. Useful for creating sentinel errors.
const ErrSomething = errors.Sentinel("something went wrong")
type StackTrace ¶
type StackTrace = errors.StackTrace
StackTrace is stack of Frames from innermost (newest) to outermost (oldest).
It is an alias of the same type in github.com/pkg/errors.