mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
10 lines
183 B
C#
10 lines
183 B
C#
namespace Wox.Infrastructure.Exception
|
|
{
|
|
public class WoxI18nException : WoxException
|
|
{
|
|
public WoxI18nException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|