Files
PowerToys/Wox.Core/Exception/WoxI18nException.cs
2015-01-03 15:20:34 +08:00

15 lines
258 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Core.Exception
{
public class WoxI18nException:WoxException
{
public WoxI18nException(string msg) : base(msg)
{
}
}
}