1c840e35ffdb344cbd66177f57c77315f8e21b48
[debian/openrocket] / src / net / sf / openrocket / simulation / exception / SimulationLaunchException.java
1 package net.sf.openrocket.simulation.exception;
2
3 /**
4  * An exception signifying that a problem occurred at launch, for example
5  * that no motors were defined or no motors ignited.
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  */
9 public class SimulationLaunchException extends SimulationException {
10
11         public SimulationLaunchException() {
12
13         }
14
15         public SimulationLaunchException(String message) {
16                 super(message);
17         }
18
19         public SimulationLaunchException(Throwable cause) {
20                 super(cause);
21         }
22
23         public SimulationLaunchException(String message, Throwable cause) {
24                 super(message, cause);
25         }
26
27 }