You've already forked CC-Framework.BriskGameServer
10 lines
200 B
C#
10 lines
200 B
C#
public class BriskBlockingException : BriskException
|
|
{
|
|
public BriskBlockingException(string message, int code = 0) : base(message)
|
|
{
|
|
Code = code;
|
|
}
|
|
|
|
public int Code { get; }
|
|
}
|