Package: ProduktionsrollenBereitsVorhandenException
ProduktionsrollenBereitsVorhandenException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ProduktionsrollenBereitsVorhandenException(String) | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
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: }