github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+incompatible/actor/actionerror/plugin_execute_error.go (about)

     1  package actionerror
     2  
     3  // PluginExecuteError is returned when running the plugin binary fails.
     4  type PluginExecuteError struct {
     5  	Err error
     6  }
     7  
     8  func (e PluginExecuteError) Error() string {
     9  	return e.Err.Error()
    10  }