| 237 | } |
| 238 | |
| 239 | type withMessage struct { |
| 240 | cause error |
| 241 | msg string |
| 242 | } |
| 243 | |
| 244 | func (w *withMessage) Error() string { return w.msg + ": " + w.cause.Error() } |
| 245 | func (w *withMessage) Cause() error { return w.cause } |
nothing calls this directly
no outgoing calls
no test coverage detected