PowerToys/Wox.Infrastructure/Exception/WoxI18nException.cs
2015-11-09 01:32:33 +00:00

10 lines
183 B
C#

namespace Wox.Infrastructure.Exception
{
public class WoxI18nException : WoxException
{
public WoxI18nException(string msg) : base(msg)
{
}
}
}