(err error, template string, params ...string)
| 85 | } |
| 86 | |
| 87 | func Wrapf(err error, template string, params ...string) error { |
| 88 | return Wrap(err, fmt.Sprintf(template, params)) |
| 89 | } |
| 90 | |
| 91 | // adds to the end of the error message (without adding any whitespace or punctuation) |
| 92 | func Append(err error, str string) error { |