mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
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;
|
|
}
|
|
}
|
|
}
|