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