create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / util / ConfigurationException.java
1 package net.sf.openrocket.util;
2
3 /**
4  * An exception to be thrown when a fatal problem with the environment
5  * is encountered (for example some file cannot be found).
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  */
9 public class ConfigurationException extends FatalException {
10
11         public ConfigurationException() {
12         }
13
14         public ConfigurationException(String message) {
15                 super(message);
16         }
17
18         public ConfigurationException(Throwable cause) {
19                 super(cause);
20         }
21
22         public ConfigurationException(String message, Throwable cause) {
23                 super(message, cause);
24         }
25
26 }