github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+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 }