func NewErrorWithStack()

in errorhelper/errorhelper.go [16:19]


func NewErrorWithStack(errString string) error {
	stackString := string(debug.Stack())
	return fmt.Errorf("%s\nCallStack: %s", errString, stackString)
}