| 303 | } |
| 304 | |
| 305 | type myMultiError struct{ cause error } |
| 306 | |
| 307 | func (e myMultiError) Error() string { return e.cause.Error() } |
| 308 | func (e myMultiError) Unwrap() []error { return []error{e.cause} } |
nothing calls this directly
no outgoing calls
no test coverage detected