Flow.Launcher/Wox.Infrastructure/Exceptions/WoxException.cs

14 lines
201 B
C#
Raw Normal View History

2013-12-23 11:21:51 +00:00
using System;
2014-12-21 14:03:03 +00:00
namespace Wox.Infrastructure.Exceptions
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)
{
}
}
}