Skip to contentMethod: KommandoAusfuehrungsException(String)
      1: package util.exceptions;
2: 
3: /**
4:  * Exception für den Fall, dass etwas noch nicht ausgeführt wurde.
5:  */
6: public class KommandoAusfuehrungsException extends PPSException {
7:         
8:         /**
9:          * 
10:          */
11:         private static final long serialVersionUID = 1L;
12:         
13:         /**
14:          * @see Exception
15:          * @param message
16:          *            .
17:          */
18:         public KommandoAusfuehrungsException(final String message) {
19:                 super(message);
20:         }
21:         
22: }