Skip to content

Method: PPSException(String)

1: package util.exceptions;
2:
3:
4: /**
5: * Exceptionklasse für das Produktionsplanungssystem.
6: */
7: @SuppressWarnings("serial")
8: public class PPSException extends Exception {
9:         
10:         /**
11:          * @param message
12:          * Nachricht, die bei Wurf der Exception ausgegeben wird.
13:          */
14:         public PPSException(final String message) {
15:                 super(message);
16:         }
17: }