mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
15 lines
247 B
C#
15 lines
247 B
C#
|
|
namespace Wox.Core.Exception
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Base Wox Exceptions
|
|||
|
|
/// </summary>
|
|||
|
|
public class WoxException : System.Exception
|
|||
|
|
{
|
|||
|
|
public WoxException(string msg)
|
|||
|
|
: base(msg)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|