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

16 lines
364 B
C#

public class BriskApiException : BriskException
{
public BriskApiException(int httpStatus, int code, string serverMessage) : base(serverMessage)
{
HttpStatus = httpStatus;
Code = code;
ServerMessage = serverMessage;
}
public int HttpStatus { get; }
public int Code { get; }
public string ServerMessage { get; }
}