mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02: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)
|
|
{
|
|
}
|
|
}
|
|
}
|