errors.go 114 Bytes
Newer Older
Matthew Slipper's avatar
Matthew Slipper committed
1 2 3 4 5
package proxyd

import "fmt"

func wrapErr(err error, msg string) error {
Joshua Gutow's avatar
Joshua Gutow committed
6
	return fmt.Errorf("%s %w", msg, err)
Matthew Slipper's avatar
Matthew Slipper committed
7
}