Files
CC-Framework.BriskGameServer/PackageSource/com.foldcc.cc-framework.brisk-game-server/Runtime/Exceptions/BriskMaintenanceException.cs

7 lines
176 B
C#
Raw Normal View History

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