mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
16 lines
270 B
C#
16 lines
270 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Wox.Helper
|
|
{
|
|
public class WoxJsonPRCException : WoxException
|
|
{
|
|
public WoxJsonPRCException(string msg)
|
|
: base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|