create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / util / FatalException.java
1 package net.sf.openrocket.util;
2
3 /**
4  * A superclass for all types of fatal error conditions.  This class is
5  * abstract so only subclasses can be used.
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  * @see BugException
9  * @see ConfigurationException
10  */
11 public abstract class FatalException extends RuntimeException {
12
13         public FatalException() {
14         }
15
16         public FatalException(String message) {
17                 super(message);
18         }
19
20         public FatalException(Throwable cause) {
21                 super(cause);
22         }
23
24         public FatalException(String message, Throwable cause) {
25                 super(message, cause);
26         }
27
28 }