mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
1. #486 2. fix #778 #763 #742 3. MVVM refactoring 4. remove IMultipleActionKeywords interface, use PluginManager directly
18 lines
481 B
C#
18 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;
|
|
}
|
|
}
|
|
}
|