mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-27 14:45:52 +08:00
9 lines
204 B
C#
9 lines
204 B
C#
using System;
|
|
|
|
namespace SqlSugar.DistributedSystem.Snowflake
|
|
{
|
|
public class InvalidSystemClock : Exception
|
|
{
|
|
public InvalidSystemClock(string message) : base(message) { }
|
|
}
|
|
} |