mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
10 lines
172 B
C#
10 lines
172 B
C#
namespace Wox.Core.Exception
|
|
{
|
|
public class WoxHttpException :WoxException
|
|
{
|
|
public WoxHttpException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|