-- import "github.com/doloopwhile/go-merror"
Package merror provide MultipleError which help to collecting together multiple errors
type MultipleError struct {
Errors []error
}MultipleError is collection of errors
func Of(errs []error) *MultipleErrorOf is a factory of MultipleError. If errs contains non-nil errors, returns a MultipleError of the errors. If errs contains nil's only or errs is nil, returns nil
func (m *MultipleError) Error() stringError returns sub error messages they have been joined with semi-colons.
MIT License. See LICENSE file.
I am looking for you pull request.