github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+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 }