create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / simulation / exception / SimulationNotSupportedException.java
1 package net.sf.openrocket.simulation.exception;
2
3
4 /**
5  * A exception that signifies that the attempted simulation is not supported.  
6  * The reason for not being supported may be due to unsupported combination of
7  * simulator/calculator, unsupported rocket structure or other reasons.
8  * <p>
9  * This exception signifies a fatal problem in the simulation; for non-fatal conditions
10  * add a warning to the simulation results.
11  * 
12  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
13  */
14 public class SimulationNotSupportedException extends SimulationException {
15
16         public SimulationNotSupportedException() {
17         }
18
19         public SimulationNotSupportedException(String message) {
20                 super(message);
21         }
22
23         public SimulationNotSupportedException(Throwable cause) {
24                 super(cause);
25         }
26
27         public SimulationNotSupportedException(String message, Throwable cause) {
28                 super(message, cause);
29         }
30 }