create changelog entry
[debian/openrocket] / core / 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(String message) {
12                 super(message);
13         }
14         
15         public SimulationLaunchException(String message, Throwable cause) {
16                 super(message, cause);
17         }
18         
19 }