github.com/willmadison/cli@v6.40.1-0.20181018160101-29d5937903ff+incompatible/actor/actionerror/plugin_invalid_error.go (about) 1 package actionerror 2 3 // PluginInvalidError is returned with a plugin is invalid because it is 4 // missing a name or has 0 commands. 5 type PluginInvalidError struct { 6 Err error 7 } 8 9 func (PluginInvalidError) Error() string { 10 return "File is not a valid cf CLI plugin binary." 11 }