mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
13 lines
201 B
C#
13 lines
201 B
C#
using System;
|
|
|
|
namespace Wox.Infrastructure.Exceptions
|
|
{
|
|
public class WoxException : Exception
|
|
{
|
|
public WoxException(string msg)
|
|
: base(msg)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|