github.com/willmadison/cli@v6.40.1-0.20181018160101-29d5937903ff+incompatible/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 }