mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
14 lines
308 B
C#
14 lines
308 B
C#
namespace Wox.Core.Exception
|
|
{
|
|
public class WoxPluginException : WoxException
|
|
{
|
|
public string PluginName { get; set; }
|
|
|
|
public WoxPluginException(string pluginName,System.Exception e)
|
|
: base(e.Message,e)
|
|
{
|
|
PluginName = pluginName;
|
|
}
|
|
}
|
|
}
|