MCPcopy Create free account
hub / github.com/aws/smithy-go / Error

Method Error

testing/errors.go:8–15  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6type errors []error
7
8func (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}

Callers

nothing calls this directly

Calls 3

WriteStringMethod · 0.65
ErrorMethod · 0.65
StringMethod · 0.65

Tested by

no test coverage detected