github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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 }