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

9 lines
204 B
C#
Raw Normal View History

2026-04-10 22:06:39 +08:00
using System;
public sealed class BriskNetworkException : BriskException
{
public BriskNetworkException(string message, Exception innerException = null) : base(message, innerException)
{
}
}