public RestRequestException(UnityEditor.RestService.HttpStatusCode httpStatusCode, string restErrorString, string restErrorDescription)
 {
     this.HttpStatusCode       = httpStatusCode;
     this.RestErrorString      = restErrorString;
     this.RestErrorDescription = restErrorDescription;
 }
 public RestRequestException(UnityEditor.RestService.HttpStatusCode httpStatusCode, string restErrorString) : this(httpStatusCode, restErrorString, null)
 {
 }