Skip to content

Package: SimulationsException

SimulationsException

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

Coverage

1: package simulation.exceptions;
2:
3: /**
4: * Exception die bei einer Simulation durch den Simulationsservice auftreten kann.
5: */
6: public class SimulationsException extends RuntimeException {
7:         /**
8:          *
9:          * @param message message die weitergegeben wird.
10:          */
11:         public SimulationsException(final String message) {
12:                 super(message);
13:         }
14: }