summaryrefslogtreecommitdiffstats
path: root/pkg/utils/errors.go
blob: cd3cb686ca2482fb3f041a81fcdc85c8a3cd9c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package utils

import "github.com/go-errors/errors"

// WrapError wraps an error for the sake of showing a stack trace at the top level
// the go-errors package, for some reason, does not return nil when you try to wrap
// a non-error, so we're just doing it here
func WrapError(err error) error {
	if err == nil {
		return err
	}

	return errors.Wrap(err, 0)
}