You've already forked CC-Framework.BriskGameServer
9 lines
204 B
C#
9 lines
204 B
C#
using System;
|
|
|
|
public sealed class BriskNetworkException : BriskException
|
|
{
|
|
public BriskNetworkException(string message, Exception innerException = null) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|