(code string, err error, message string)
| 154 | } |
| 155 | |
| 156 | func wrapCLIError(code string, err error, message string) error { |
| 157 | return &cliError{Code: code, Message: message, Err: err} |
| 158 | } |
| 159 | |
| 160 | func extractCLIError(err error) (*cliError, bool) { |
| 161 | var cliErr *cliError |
no outgoing calls
no test coverage detected