MCPcopy
hub / github.com/mitchellh/mapstructure / Error

Struct Error

error.go:12–14  ·  view source on GitHub ↗

Error implements the error interface and can represents multiple errors that occur in the course of a single decode.

Source from the content-addressed store, hash-verified

10// Error implements the error interface and can represents multiple
11// errors that occur in the course of a single decode.
12type Error struct {
13 Errors []string
14}
15
16func (e *Error) Error() string {
17 points := make([]string, len(e.Errors))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected