optimization updates
[debian/openrocket] / src / net / sf / openrocket / simulation / exception / SimulationCalculationException.java
1 package net.sf.openrocket.simulation.exception;
2
3 /**
4  * An exception that indicates that a computation problem has occurred during
5  * the simulation, for example that some values have exceed reasonable bounds.
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  */
9 public class SimulationCalculationException extends SimulationException {
10         
11         public SimulationCalculationException() {
12                 // TODO Auto-generated constructor stub
13         }
14         
15         public SimulationCalculationException(String message) {
16                 super(message);
17                 // TODO Auto-generated constructor stub
18         }
19         
20         public SimulationCalculationException(Throwable cause) {
21                 super(cause);
22                 // TODO Auto-generated constructor stub
23         }
24         
25         public SimulationCalculationException(String message, Throwable cause) {
26                 super(message, cause);
27                 // TODO Auto-generated constructor stub
28         }
29         
30 }