mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
20 lines
391 B
C#
20 lines
391 B
C#
namespace Wox.Infrastructure.Exception
|
|
{
|
|
/// <summary>
|
|
/// Base Wox Exceptions
|
|
/// </summary>
|
|
public class WoxException : System.Exception
|
|
{
|
|
public WoxException(string msg)
|
|
: base(msg)
|
|
{
|
|
|
|
}
|
|
|
|
public WoxException(string msg, System.Exception innerException)
|
|
: base(msg, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|