mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
6e13440f1f
1. #486 2. fix #778 #763 #742 3. MVVM refactoring 4. remove IMultipleActionKeywords interface, use PluginManager directly
19 lines
481 B
C#
19 lines
481 B
C#
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;
|
|
}
|
|
}
|
|
}
|