Searched defs:FlagNotDefinedError (Results 1 – 1 of 1) sorted by relevance
26 type FlagNotDefinedError struct { struct27 RawArg string // the original argument, like --foo or -foo=value28 Name string29 HasValue bool // is this the -foo=value or --foo=value form?30 Value string // only provided if HasValue is true33 func (e FlagNotDefinedError) Error() string {