Categorygithub.com/ericuni/errorx
modulepackage
0.0.0-20240421124338-dad676cd5fbb
Repository: https://github.com/ericuni/errorx.git
Documentation: pkg.go.dev

# README

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)
}

# Functions

No description provided by the author
New new error.
Trace trace.
Tracef trace.