Add adds an error to the aggregate
(id string, err error)
| 399 | |
| 400 | // Add adds an error to the aggregate |
| 401 | func (e *AggregateError) Add(id string, err error) { |
| 402 | e.errs[id] = err |
| 403 | } |
| 404 | |
| 405 | // Merge merges another aggregate error into this one |
| 406 | func (e *AggregateError) Merge(err error) bool { |
no outgoing calls
no test coverage detected