add PyWinAlfred

This commit is contained in:
qianlifeng
2013-12-23 19:21:51 +08:00
parent 57b381311c
commit fffb97ea8d
11 changed files with 293 additions and 54 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WinAlfred.Helper
{
public class WinAlfredException : Exception
{
public WinAlfredException(string msg)
: base(msg)
{
}
}
}