mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-06-07 02:18:20 +08:00
ef54c40d10
2.优化了触发器的执行,优化了节点执行时的代码逻辑 3.优化了节点方法委托的参数获取
19 lines
364 B
C#
19 lines
364 B
C#
using System;
|
|
using System.CodeDom;
|
|
|
|
namespace Serein.Library.Ex
|
|
{
|
|
/// <summary>
|
|
/// 触发器
|
|
/// </summary>
|
|
public class FlipflopException: Exception
|
|
{
|
|
|
|
public bool IsCancel { get; }
|
|
public FlipflopException(string message, bool isCancel = true) :base(message)
|
|
{
|
|
IsCancel = isCancel;
|
|
}
|
|
}
|
|
}
|