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

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)
{
}
}
}