(err error, strs ...string)
| 34 | } |
| 35 | |
| 36 | func ErrorStr(err error, strs ...string) string { |
| 37 | wrappedErr := Wrap(err, strs...) |
| 38 | return "error: " + strings.TrimSpace(Message(wrappedErr)) |
| 39 | } |
| 40 | |
| 41 | func Message(err error, strs ...string) string { |
| 42 | wrappedErr := Wrap(err, strs...) |
no test coverage detected