| 308 | func (e myMultiError) Unwrap() []error { return []error{e.cause} } |
| 309 | |
| 310 | type myOtherMultiError struct{ cause error } |
| 311 | |
| 312 | func (e myOtherMultiError) Error() string { return e.cause.Error() } |
| 313 | func (e myOtherMultiError) Unwrap() []error { return []error{e.cause} } |
nothing calls this directly
no outgoing calls
no test coverage detected