create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / simulation / exception / MotorIgnitionException.java
1 package net.sf.openrocket.simulation.exception;
2
3 /**
4  * An exception signifying that the simulation failed because no motors were
5  * defined or ignited in the rocket.
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  */
9 public class MotorIgnitionException extends SimulationLaunchException {
10         
11         public MotorIgnitionException(String message) {
12                 super(message);
13         }
14         
15         public MotorIgnitionException(String message, Throwable cause) {
16                 super(message, cause);
17         }
18         
19 }