Skip to content

Package: SollteNichtPassierenException

SollteNichtPassierenException

nameinstructionbranchcomplexitylinemethod
SollteNichtPassierenException()
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%
SollteNichtPassierenException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: package util.exceptions;
2:
3: /**
4: * Eine Exception die einen Zustand signalisiert der nicht passieren sollte.
5: */
6: @SuppressWarnings("serial")
7: public class SollteNichtPassierenException extends RuntimeException {
8:
9:         /**
10:          * Leerer Konstruktor, welcher einfach die Exception erstellt.
11:          */
12: public SollteNichtPassierenException() {
13: }
14:
15: /**
16: * Konstruktor, welche noch eine spezifizierte Nachricht für die Exception setzt.
17: * @param exceptionMessage Nachricht der Exception
18: */
19: public SollteNichtPassierenException(final String exceptionMessage) {
20: super(exceptionMessage);
21: }
22:
23: }