mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
79b4716b95
1. fix #475 2. remove GetLanguagesFolder, part of #468 3. bug introduced since 1f939ff3
23 lines
560 B
C#
23 lines
560 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;
|
|
}
|
|
|
|
public WoxPluginException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|