PowerToys/Wox.Infrastructure/Exception/WoxFatalException.cs

13 lines
301 B
C#
Raw Normal View History

2015-11-09 09:32:33 +08:00
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)
{
}
}
}