PowerToys/Wox/Helper/WoxPythonException.cs

15 lines
256 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
{
public class WoxPythonException : WoxException
{
public WoxPythonException(string msg) : base(msg)
{
}
}
}