Skip to contentMethod: QualifikationsException(String)
      1: package mensch;
2: 
3: /**
4:  * Exception, in Verbindung mit Mitarbeitern und Qualifikationen. Wird geworfen, wenn einem Mitarbeiter Qualifikationen
5:  * mit derselben MaschinenFaehigkeit hinzugefuegt werden
6:  */
7: @SuppressWarnings("serial")
8: public class QualifikationsException extends Exception {
9:         
10:         /**
11:          * Erstellt eine QualifikationsException mit einer Nachricht.
12:          * @param string
13:          *            Nachricht der Exception
14:          */
15:         public QualifikationsException(final String string) {
16:                 super(string);
17:         }
18:         
19: }