Flow.Launcher/Wox/Helper/WoxPythonException.cs

16 lines
270 B
C#
Raw Normal View History

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