mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-04 20:21:18 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|