Skip to content

Package: CycleException

CycleException

nameinstructionbranchcomplexitylinemethod
CycleException(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: /**
2: *
3: */
4: package model.type;
5:
6: /**
7: * @author Hendrik
8: *
9: */
10: public class CycleException extends TypeExceptions {
11:
12:         /**
13:          *
14:          */
15:         private static final long serialVersionUID = -5315664475031670814L;
16:
17:         /**
18:          * new Exception for the Cycle.
19:          *
20:          * @param msg
21:          * Errormsg.
22:          */
23:         public CycleException(final String msg) {
24:                 super(msg);
25:                 // TODO Auto-generated constructor stub
26:         }
27: }