MCPcopy Create free account
hub / github.com/AdRoll/baker / ErrorRequiredField

Struct ErrorRequiredField

config.go:571–573  ·  view source on GitHub ↗

ErrorRequiredField describes the absence of a required field in a component configuration.

Source from the content-addressed store, hash-verified

569// ErrorRequiredField describes the absence of a required field
570// in a component configuration.
571type ErrorRequiredField struct {
572 Field string // Field is the name of the missing field
573}
574
575func (e ErrorRequiredField) Error() string {
576 return fmt.Sprintf("%q is a required field", e.Field)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected