Files
SqlSugar/Src/Asp.NetCore2/SqlSugar/DistributedSystem/Snowflake/InvalidSystemClock.cs
2022-03-25 10:39:07 +08:00

9 lines
204 B
C#

using System;
namespace SqlSugar.DistributedSystem.Snowflake
{
public class InvalidSystemClock : Exception
{
public InvalidSystemClock(string message) : base(message) { }
}
}