mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|