You've already forked CC-Framework.BriskGameServer
Add package sync workflow
This commit is contained in:
@@ -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