Xamarin.Parse.ParseException.ParseException C# (CSharp) 메소드

ParseException() 개인적인 메소드

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