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

import "fmt"

func wrapErr(err error, msg string) error {
	return fmt.Errorf("%s %v", msg, err)
}