github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/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 }