mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
8aee2858ea
1. completed rewrite the action keyword setting logic. 2. Fix setting for multiple action keywords in #352 3. Fix setting for Web Search plugin
21 lines
500 B
C#
21 lines
500 B
C#
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($"{pluginName} : {msg}", e)
|
|
{
|
|
PluginName = pluginName;
|
|
}
|
|
|
|
public WoxPluginException(string pluginName, string msg) : base(msg)
|
|
{
|
|
PluginName = pluginName;
|
|
}
|
|
}
|
|
}
|