public ApiException(string message)
 {
     ServerErrorResponse = new ServerErrorResponseModel
     {
         Message = message,
         Code    = ""
     };
 }
 public ApiException(ServerErrorResponseModel serverErrorResponse)
 {
     ServerErrorResponse = serverErrorResponse;
 }