github.com/DaAlbrecht/cf-cli@v0.0.0-20231128151943-1fe19bb400b9/actor/actionerror/plugin_commands_conflict_error.go (about) 1 package actionerror 2 3 // PluginCommandsConflictError is returned when a plugin command name conflicts 4 // with a core or existing plugin command name. 5 type PluginCommandsConflictError struct { 6 PluginName string 7 PluginVersion string 8 CommandNames []string 9 CommandAliases []string 10 } 11 12 func (PluginCommandsConflictError) Error() string { 13 return "" 14 }