Flow.Launcher/WinAlfred/Helper/WinAlfredException.cs

17 lines
272 B
C#
Raw Normal View History

2013-12-23 11:21:51 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WinAlfred.Helper
{
public class WinAlfredException : Exception
{
public WinAlfredException(string msg)
: base(msg)
{
}
}
}