PowerToys/Wox.Core/Exception/WoxCritialException.cs
2015-10-30 23:23:01 +00:00

13 lines
295 B
C#

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