PowerToys/Wox.Core/Exception/WoxI18nException.cs

15 lines
258 B
C#
Raw Normal View History

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)
{
}
}
}