PowerToys/Wox.Infrastructure/Exception/WoxPluginException.cs

14 lines
345 B
C#
Raw Normal View History

2015-11-09 09:32:33 +08:00
namespace Wox.Infrastructure.Exception
2015-01-16 23:42:12 +08:00
{
public class WoxPluginException : WoxException
{
public string PluginName { get; set; }
public WoxPluginException(string pluginName, string msg, System.Exception e)
: base($"{msg}: {pluginName}", e)
2015-01-16 23:42:12 +08:00
{
PluginName = pluginName;
}
}
}