mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 13:35:31 +02:00
11 lines
191 B
C#
11 lines
191 B
C#
namespace Wox.Core.Exception
|
|
{
|
|
public class WoxJsonRPCException : WoxException
|
|
{
|
|
public WoxJsonRPCException(string msg)
|
|
: base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|