mirror of https://github.com/portainer/portainer
19 lines
410 B
Go
19 lines
410 B
Go
![]() |
package errorlist
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// Combine a slice of errors into a single error
|
||
|
// to use this, generate errors by appending to errorList in a loop, then return combine(errorList)
|
||
|
func Combine(errorList []error) error {
|
||
|
if len(errorList) == 0 {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
errorMsg := "Multiple errors occurred:"
|
||
|
for _, err := range errorList {
|
||
|
errorMsg += "\n" + err.Error()
|
||
|
}
|
||
|
|
||
|
return errors.New(errorMsg)
|
||
|
}
|