public override void SelectConcept(Enum concept)
 {
     base.SelectConcept(concept);
     switch ((ExceptionsConceptList)concept)
     {
         case ExceptionsConceptList.ParsingInvalidNumberExceptionEg:
             conceptExecutionClass = new BasicExceptionExample1();
             break;
     }
 }
Example #2
0
 public override void SelectConcept(Enum concept)
 {
     base.SelectConcept(concept);
     switch ((ExceptionsConceptList)concept)
     {
     case ExceptionsConceptList.ParsingInvalidNumberExceptionEg:
         conceptExecutionClass = new BasicExceptionExample1();
         break;
     }
 }