create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / simulation / exception / SimulationCancelledException.java
1 package net.sf.openrocket.simulation.exception;
2
3
4 /**
5  * An exception signifying that a simulation was cancelled.
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  */
9 public class SimulationCancelledException extends SimulationException {
10
11         public SimulationCancelledException() {
12
13         }
14
15         public SimulationCancelledException(String message) {
16                 super(message);
17         }
18
19         public SimulationCancelledException(Throwable cause) {
20                 super(cause);
21         }
22
23         public SimulationCancelledException(String message, Throwable cause) {
24                 super(message, cause);
25         }
26
27 }