github.com/cloudfoundry/cli@v7.1.0+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  }