PowerToys/Wox/Helper/WoxException.cs

17 lines
254 B
C#
Raw Normal View History

2013-12-23 19:21:51 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2014-01-29 18:33:24 +08:00
namespace Wox.Helper
2013-12-23 19:21:51 +08:00
{
2014-01-29 18:33:24 +08:00
public class WoxException : Exception
2013-12-23 19:21:51 +08:00
{
2014-01-29 18:33:24 +08:00
public WoxException(string msg)
2013-12-23 19:21:51 +08:00
: base(msg)
{
}
}
}