コード例 #1
0
 // Methods
 public GatewayErrorDetail(GatewayErrorCode code, string message)
 {
     this.Code    = code.ToString();
     this.Message = message;
 }
コード例 #2
0
ファイル: GatewayErrorDetail.cs プロジェクト: nickchal/pash
		public GatewayErrorDetail(GatewayErrorCode code, string message)
		{
			this.Code = code.ToString();
			this.Message = message;
		}
コード例 #3
0
ファイル: GatewayResult.cs プロジェクト: rinavin/RCJS
 /// <summary>
 /// find the string ID corresponding to the gateway error code
 /// </summary>
 /// <param name="errorCode"></param>
 /// <returns></returns>
 private string ErrorCodeToMsgInterfaceId(GatewayErrorCode errorCode)
 {
     return(errorsDictionary[errorCode]);
 }