Example #1
0
 internal ParseException(ParseErrorResponse resp)
     : base(resp.error)
 {
 }
Example #2
0
 internal ParseException(int httpStatus, ParseErrorResponse resp)
     : base(resp.error)
 {
     this.ParseCode = resp.code;
     this.HttpCode = httpStatus;
 }
Example #3
0
 internal ParseException(ParseErrorResponse resp)
     : base(resp.error)
 {
 }