(errorMessage string)
| 947 | } |
| 948 | |
| 949 | func nonNestedError(errorMessage string) error { |
| 950 | return whisk.MakeWskError( |
| 951 | errors.New(errorMessage), |
| 952 | whisk.EXIT_CODE_ERR_USAGE, |
| 953 | whisk.DISPLAY_MSG, |
| 954 | whisk.DISPLAY_USAGE) |
| 955 | } |
| 956 | |
| 957 | func actionParseError(cmd *cobra.Command, args []string, err error) error { |
| 958 | whisk.Debug(whisk.DbgError, "parseAction(%s, %s) error: %s\n", cmd.Name(), args, err) |
no outgoing calls
no test coverage detected