mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
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
11 lines
191 B
C#
11 lines
191 B
C#
namespace Wox.Core.Exception
|
|
{
|
|
public class WoxJsonRPCException : WoxException
|
|
{
|
|
public WoxJsonRPCException(string msg)
|
|
: base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|