mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
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;
|
|
}
|
|
}
|
|
}
|