PowerToys/Wox/Helper/WoxException.cs

17 lines
254 B
C#
Raw Normal View History

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