Skip to contentPackage: CheckingConditionPhase
CheckingConditionPhase
Coverage
      1: package controller;
2: 
3: import model.type.TypeDoesNotExistException;
4: import model.type.TypeExceptions;
5: 
6: /**
7:  * 
8:  */
9: 
10: /**
11:  * @author Jannik
12:  * 
13:  */
14: public abstract class CheckingConditionPhase extends AbstractPhase {
15: 
16:         @Override
17:         public abstract void action() throws TypeDoesNotExistException, TypeExceptions;
18: }