Skip to content

Package: KommandoAusfuehrungsException

KommandoAusfuehrungsException

nameinstructionbranchcomplexitylinemethod
KommandoAusfuehrungsException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

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: }