mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
Fix setting for multiple action keywords
1. completed rewrite the action keyword setting logic. 2. Fix setting for multiple action keywords in #352 3. Fix setting for Web Search plugin
This commit is contained in:
@@ -1,11 +1,18 @@
|
||||
namespace Wox.Infrastructure.Exception
|
||||
using Wox.Plugin;
|
||||
|
||||
namespace Wox.Infrastructure.Exception
|
||||
{
|
||||
public class WoxPluginException : WoxException
|
||||
{
|
||||
public string PluginName { get; set; }
|
||||
|
||||
public WoxPluginException(string pluginName, string msg, System.Exception e)
|
||||
: base($"{msg}: {pluginName}", e)
|
||||
: base($"{pluginName} : {msg}", e)
|
||||
{
|
||||
PluginName = pluginName;
|
||||
}
|
||||
|
||||
public WoxPluginException(string pluginName, string msg) : base(msg)
|
||||
{
|
||||
PluginName = pluginName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user