FlagErrorWrap returns a new FlagError that wraps the specified error.
(err error)
| 15 | |
| 16 | // FlagErrorWrap returns a new FlagError that wraps the specified error. |
| 17 | func FlagErrorWrap(err error) error { return &FlagError{err} } |
| 18 | |
| 19 | // A *FlagError indicates an error processing command-line flags or other arguments. |
| 20 | // Such errors cause the application to display the usage message. |
no outgoing calls
no test coverage detected