mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
15 lines
256 B
C#
15 lines
256 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Wox.Helper
|
|||
|
{
|
|||
|
public class WoxPythonException : WoxException
|
|||
|
{
|
|||
|
public WoxPythonException(string msg) : base(msg)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|