Method: SimulationsException(String)
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: }