PowerToys/Wox.Core/Exception/WoxCritialException.cs

13 lines
295 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 WoxCritialException : WoxException
{
public WoxCritialException(string msg) : base(msg)
{
}
}
}