PowerToys/Wox.Infrastructure/Exception/WoxI18nException.cs

10 lines
171 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
namespace Wox.Core.Exception
{
public class WoxI18nException:WoxException
{
public WoxI18nException(string msg) : base(msg)
{
}
}
}