mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
13 lines
301 B
C#
13 lines
301 B
C#
namespace Wox.Infrastructure.Exception
|
|
{
|
|
/// <summary>
|
|
/// Represent exceptions that wox can't handle and MUST close running Wox.
|
|
/// </summary>
|
|
public class WoxFatalException : WoxException
|
|
{
|
|
public WoxFatalException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|