Change python plugin interface.

This commit is contained in:
qianlifeng
2014-02-23 10:36:37 +08:00
parent a0507bd14d
commit 26294a5742
5 changed files with 36 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Helper
{
public class WoxPythonException : WoxException
{
public WoxPythonException(string msg) : base(msg)
{
}
}
}