Skip to content

Package: CheckException

CheckException

nameinstructionbranchcomplexitylinemethod
CheckException()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
CheckException(Exception)
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: package de.fhdw.wtf.common.exception.editor;
2:
3: public abstract class CheckException extends Exception {
4:         
5:         /**
6:          * generated.
7:          */
8:         private static final long serialVersionUID = 4108347970040254141L;
9:         
10:         /**
11:          * Constructor of {@link CheckException}.
12:          */
13:         public CheckException() {
14:                 super();
15:         }
16:         
17:         /**
18:          * Constructor of {@link CheckException}.
19:          *
20:          * @param inner
21:          * inner Exception
22:          */
23:         public CheckException(final Exception inner) {
24:                 super(inner);
25:         }
26:         
27:         /**
28:          * Accept-Method for Visitor-Pattern.
29:          *
30:          * @param v
31:          * {@link CheckExceptionVisitor}
32:          */
33:         public abstract void accept(CheckExceptionVisitor v);
34: }