mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-11 04:00:50 +08:00
12 lines
240 B
C#
12 lines
240 B
C#
namespace Yi.Framework.AiHub.Domain.AiGateWay.Exceptions;
|
|
|
|
public class ThorRateLimitException : Exception
|
|
{
|
|
public ThorRateLimitException()
|
|
{
|
|
}
|
|
|
|
public ThorRateLimitException(string message) : base(message)
|
|
{
|
|
}
|
|
} |