github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+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  }