package errors import "fmt" func Wrap(err error, str string) error { if err == nil { return err } return fmt.Errorf("%s: %w", str, err) }