1 2 3 4 5 6 7
package misc import "fmt" func Wrap_one_error(a error, b error) error { return fmt.Errorf("%w: %w", a, b) }