PowerToys/Wox.Infrastructure/Exception/WoxFatalException.cs

13 lines
291 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
namespace Wox.Core.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)
{
}
}
}