github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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 }