Skip to content

Package: FaehigkeitsException

FaehigkeitsException

nameinstructionbranchcomplexitylinemethod
FaehigkeitsException(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: package util.exceptions;
2:
3: /**
4: * Exceptionklasse für Fehler, welche mit Fähigkeiten zusammenhängen.
5: *
6: */
7: public class FaehigkeitsException extends PPSException {
8:         
9:         /**
10:          *
11:          */
12:         private static final long serialVersionUID = 1L;
13:         
14:         /**
15:          * @see Exception
16:          *
17:          * @param message
18:          * {@link Exception#Exception(String)}
19:          */
20:         public FaehigkeitsException(final String message) {
21:                 super(message);
22:         }
23:         
24: }