GetFlag returns the flag for which the error occurred.
()
| 123 | |
| 124 | // GetFlag returns the flag for which the error occurred. |
| 125 | func (e *InvalidValueError) GetFlag() *Flag { |
| 126 | return e.flag |
| 127 | } |
| 128 | |
| 129 | // GetValue returns the invalid value that was provided. |
| 130 | func (e *InvalidValueError) GetValue() string { |
no outgoing calls