PowerToys/Wox/Helper/WoxPythonException.cs

16 lines
270 B
C#
Raw Normal View History

2014-02-23 10:36:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Helper
{
2014-07-18 20:00:55 +08:00
public class WoxJsonPRCException : WoxException
2014-02-23 10:36:37 +08:00
{
2014-07-18 20:00:55 +08:00
public WoxJsonPRCException(string msg)
: base(msg)
2014-02-23 10:36:37 +08:00
{
}
}
}