PowerToys/Wox.Infrastructure/Exception/WoxHttpException.cs
2015-11-09 01:32:33 +00:00

10 lines
182 B
C#

namespace Wox.Infrastructure.Exception
{
public class WoxHttpException :WoxException
{
public WoxHttpException(string msg) : base(msg)
{
}
}
}