mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
10 lines
182 B
C#
10 lines
182 B
C#
namespace Wox.Infrastructure.Exception
|
|
{
|
|
public class WoxHttpException :WoxException
|
|
{
|
|
public WoxHttpException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|