Files
CC-Framework.BriskGameServer/PackageSource/com.foldcc.cc-framework.BriskGameServer/Runtime/Exceptions/BriskAuthExpiredException.cs

10 lines
213 B
C#
Raw Normal View History

2026-04-10 22:06:39 +08:00
public sealed class BriskAuthExpiredException : BriskException
{
public BriskAuthExpiredException(string message, int code = 0) : base(message)
{
Code = code;
}
public int Code { get; }
}