// Methods
 public GatewayErrorDetail(GatewayErrorCode code, string message)
 {
     this.Code    = code.ToString();
     this.Message = message;
 }
Exemple #2
0
		public GatewayErrorDetail(GatewayErrorCode code, string message)
		{
			this.Code = code.ToString();
			this.Message = message;
		}
Exemple #3
0
 /// <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]);
 }