Files

12 lines
240 B
C#
Raw Permalink Normal View History

2025-07-17 23:10:26 +08:00
namespace Yi.Framework.AiHub.Domain.AiGateWay.Exceptions;
public class ThorRateLimitException : Exception
{
public ThorRateLimitException()
{
}
public ThorRateLimitException(string message) : base(message)
{
}
}