mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
705354a3d6
1. Throw exception for fatal/error log when debugging 2. Write to debug output for warn/debug/info log when debugging 3. part of #355
13 lines
291 B
C#
13 lines
291 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|