mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
17 lines
272 B
C#
17 lines
272 B
C#
|
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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|