PowerToys/Wox/Helper/WoxPythonException.cs
2014-02-23 10:36:37 +08:00

15 lines
256 B
C#

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)
{
}
}
}