MCPcopy Create free account
hub / github.com/kataras/iris / errorString

Struct errorString

core/errgroup/errgroup_test.go:36–38  ·  view source on GitHub ↗

errorString is a trivial implementation of error.

Source from the content-addressed store, hash-verified

34
35// errorString is a trivial implementation of error.
36type errorString struct {
37 s string
38}
39
40func (e *errorString) Error() string {
41 return e.s

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected