Errors is an error type that concatenates multiple errors.
| 6 | |
| 7 | // Errors is an error type that concatenates multiple errors. |
| 8 | type Errors []error |
| 9 | |
| 10 | // Error returns a string containing all the errors in e. |
| 11 | func (e Errors) Error() string { |
no outgoing calls
no test coverage detected