コード例 #1
0
        private static string _FindException(OctopusCollateralDeleteExceptionEnum exceptionId)
        {
            string returned = String.Empty;
            switch(exceptionId)
            {
                case OctopusCollateralDeleteExceptionEnum.HasChildrens:
                    returned = "CollateralExceptionHasChildrens.Text";
                    break;

            }
            return returned;
        }
コード例 #2
0
 public OctopusCollateralDeleteException(OctopusCollateralDeleteExceptionEnum exceptionCode)
 {
     _code = _FindException(exceptionCode);
 }