()
| 242 | } |
| 243 | |
| 244 | func (e *joinedErrors) Error() string { |
| 245 | errs := make([]string, 0, len(e.errs)) |
| 246 | for _, err := range e.errs { |
| 247 | errs = append(errs, err.Error()) |
| 248 | } |
| 249 | return strings.Join(errs, e.sep) |
| 250 | } |
| 251 | |
| 252 | func (e *joinedErrors) Unwrap() []error { |
| 253 | return e.errs |
no outgoing calls