PowerToys/Wox.Infrastructure/Exception/WoxException.cs

20 lines
391 B
C#
Raw Normal View History

2015-11-09 09:32:33 +08:00
namespace Wox.Infrastructure.Exception
{
/// <summary>
/// Base Wox Exceptions
/// </summary>
public class WoxException : System.Exception
{
public WoxException(string msg)
: base(msg)
{
}
2015-01-16 23:42:12 +08:00
public WoxException(string msg, System.Exception innerException)
: base(msg, innerException)
{
}
}
}