コード例 #1
0
 internal ParseException(ParseErrorResponse resp)
     : base(resp.error)
 {
 }
コード例 #2
0
ファイル: ParseException.cs プロジェクト: chkn/XamarinParse
 internal ParseException(int httpStatus, ParseErrorResponse resp)
     : base(resp.error)
 {
     this.ParseCode = resp.code;
     this.HttpCode = httpStatus;
 }
コード例 #3
0
 internal ParseException(ParseErrorResponse resp)
     : base(resp.error)
 {
 }