private string _FindException(OpenCbsDisburseExceptionsEnum exceptionId)
		{
			string returned = String.Empty;
			switch(exceptionId)
			{
				case OpenCbsDisburseExceptionsEnum.DateIsWrong:
					returned = "DisburseExceptionDateWrong.Text";
					break;
			}
			return returned;
		}
示例#2
0
        private string _FindException(OpenCbsDisburseExceptionsEnum exceptionId)
        {
            string returned = String.Empty;

            switch (exceptionId)
            {
            case OpenCbsDisburseExceptionsEnum.DateIsWrong:
                returned = "DisburseExceptionDateWrong.Text";
                break;
            }
            return(returned);
        }
		public OpenCbsDisburseException(OpenCbsDisburseExceptionsEnum exceptionCode)
		{
			_code = _FindException(exceptionCode);
		}
示例#4
0
 public OpenCbsDisburseException(OpenCbsDisburseExceptionsEnum exceptionCode)
 {
     _code = _FindException(exceptionCode);
 }