You've already forked CC-Framework.BriskGameServer
Initial Brisk Unity SDK project
This commit is contained in:
15
Assets/BriskSdk/Runtime/Exceptions/BriskApiException.cs
Normal file
15
Assets/BriskSdk/Runtime/Exceptions/BriskApiException.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user