...

Source file src/github.com/aws/smithy-go/testing/errors.go

Documentation: github.com/aws/smithy-go/testing

     1  package testing
     2  
     3  import "strings"
     4  
     5  // errors provides batching errors
     6  type errors []error
     7  
     8  func (es errors) Error() string {
     9  	var b strings.Builder
    10  	for _, e := range es {
    11  		b.WriteString(e.Error())
    12  	}
    13  
    14  	return b.String()
    15  }
    16  

View as plain text