private static string _FindException(OpenCbsCollateralSaveExceptionEnum exceptionId)
		{
			string returned = String.Empty;
			switch(exceptionId)
			{
                case OpenCbsCollateralSaveExceptionEnum.NameIsNull:
					returned = "CollateralExceptionNameIsNull.Text";
					break;

                case OpenCbsCollateralSaveExceptionEnum.CastInvalid:
                    returned = "CollateralExceptionCastInvalid.Text";
					break;

                case OpenCbsCollateralSaveExceptionEnum.AlreadyExist:
                    returned = "CollateralExceptionAlreadyExist.Text";
					break;
			}
			return returned;
		}
        public OpenCbsCollateralSaveException(OpenCbsCollateralSaveExceptionEnum exceptionCode)
		{
			_code = _FindException(exceptionCode);
		}