PowerToys/Wox.Infrastructure/Exception/WoxPluginException.cs
2015-11-09 01:32:33 +00:00

14 lines
345 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($"{msg}: {pluginName}", e)
{
PluginName = pluginName;
}
}
}