Xamarin.Parse.ParseException.ParseException C# (CSharp) Method

ParseException() private method

private ParseException ( int httpStatus, ParseErrorResponse resp ) : System
httpStatus int
resp ParseErrorResponse
return System
        internal ParseException(int httpStatus, ParseErrorResponse resp)
            : base(resp.error)
        {
            this.ParseCode = resp.code;
            this.HttpCode = httpStatus;
        }
ParseException