Updates for 0.9.5
[debian/openrocket] / src / net / sf / openrocket / util / ConfigurationException.java
diff --git a/src/net/sf/openrocket/util/ConfigurationException.java b/src/net/sf/openrocket/util/ConfigurationException.java
new file mode 100644 (file)
index 0000000..692b3ac
--- /dev/null
@@ -0,0 +1,26 @@
+package net.sf.openrocket.util;
+
+/**
+ * An exception to be thrown when a fatal problem with the environment
+ * is encountered (for example some file cannot be found).
+ * 
+ * @author Sampo Niskanen <sampo.niskanen@iki.fi>
+ */
+public class ConfigurationException extends FatalException {
+
+       public ConfigurationException() {
+       }
+
+       public ConfigurationException(String message) {
+               super(message);
+       }
+
+       public ConfigurationException(Throwable cause) {
+               super(cause);
+       }
+
+       public ConfigurationException(String message, Throwable cause) {
+               super(message, cause);
+       }
+
+}