mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-06 03:07:54 +08:00
14 lines
201 B
C#
14 lines
201 B
C#
using System;
|
|
|
|
namespace Wox.Infrastructure.Exceptions
|
|
{
|
|
public class WoxException : Exception
|
|
{
|
|
public WoxException(string msg)
|
|
: base(msg)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|