mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
14 lines
345 B
C#
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;
|
|
}
|
|
}
|
|
}
|