mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +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
20 lines
381 B
C#
20 lines
381 B
C#
namespace Wox.Core.Exception
|
|
{
|
|
/// <summary>
|
|
/// Base Wox Exceptions
|
|
/// </summary>
|
|
public class WoxException : System.Exception
|
|
{
|
|
public WoxException(string msg)
|
|
: base(msg)
|
|
{
|
|
|
|
}
|
|
|
|
public WoxException(string msg, System.Exception innerException)
|
|
: base(msg, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|