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

9 lines
204 B
C#

using System;
public sealed class BriskNetworkException : BriskException
{
public BriskNetworkException(string message, Exception innerException = null) : base(message, innerException)
{
}
}