mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 20:19:17 +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
10 lines
172 B
C#
10 lines
172 B
C#
namespace Wox.Core.Exception
|
|
{
|
|
public class WoxHttpException :WoxException
|
|
{
|
|
public WoxHttpException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|