Skip to content

Package: ProduktionsrollenBereitsVorhandenException

ProduktionsrollenBereitsVorhandenException

nameinstructionbranchcomplexitylinemethod
ProduktionsrollenBereitsVorhandenException(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: * Eine Exception, welche auftritt, falls einem Mitarbeiter eine Produktionsrolle hinzugefügt wird, welche er bereits besitzt.
5: */
6: @SuppressWarnings("serial")
7: public class ProduktionsrollenBereitsVorhandenException extends PPSException {
8:
9:         /**
10:          * Konstruktor welche die spezifizierte Nachricht an den Konstruktor von Exception weiterreicht.
11:          * @param exceptionMessage Nachricht für die Exception
12:          */
13:         public ProduktionsrollenBereitsVorhandenException(final String exceptionMessage) {
14:                 super(exceptionMessage);
15:         }
16:
17: }