Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.23 KB

File metadata and controls

29 lines (24 loc) · 1.23 KB

Golang Build Status Coverage Status GoReport Go Reference

usage

import "github.com/ericuni/errorx"

The ericuni/errorx provides an easy way to trace errors without losing the original error context.

The exported New functions are designed to replace the errors.New and fmt.Errorf functions both. The same underlying error is there, but the package also records the location at which the error was created.

A primary use case for this library is to add extra context any time an error is returned from a function.

if err := SomeFunc(); err != nil {
  return err
}

This instead becomes:

if err := SomeFunc(); err != nil {
  return errorx.Trace(err)
}