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

10 lines
200 B
C#
Raw Normal View History

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