Package: GenExceptionsNotReferencedException
GenExceptionsNotReferencedException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GenExceptionsNotReferencedException() | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
Coverage
1: package de.fhdw.wtf.generator.transformer.exception;
2: 
3: import de.fhdw.wtf.common.exception.walker.TaskException;
4: 
5: /**
6:  * An exception that represents that for an expected {@link de.fhdw.wtf.common.ast.type.Type} no list of
7:  * {@link de.fhdw.wtf.generator.java.generatorModel.GenException} not referenced.
8:  */
9: public class GenExceptionsNotReferencedException extends TaskException {
10:         /**
11:          * 
12:          */
13:         private static final long serialVersionUID = -4266702129026440058L;
14:         
15:         /**
16:          * Instantiates a new {@link GenTypeNotReferencedException}.
17:          */
18:         public GenExceptionsNotReferencedException() {
19:                 super("For the Type no collection of GenException is referenced");
20:         }
21: }