github.com/arunkumar7540/cli@v6.45.0+incompatible/actor/actionerror/plugin_binary_remove_failed_error.go (about)

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