summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/status/Mix3PathProblemException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/status/Mix3PathProblemException.java')
-rw-r--r--src/org/noreply/fancydress/status/Mix3PathProblemException.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/status/Mix3PathProblemException.java b/src/org/noreply/fancydress/status/Mix3PathProblemException.java
new file mode 100644
index 0000000..7877996
--- /dev/null
+++ b/src/org/noreply/fancydress/status/Mix3PathProblemException.java
@@ -0,0 +1,14 @@
+/* $Id$ */
+package org.noreply.fancydress.status;
+
+/**
+ * There is a problem with the path.
+ */
+public class Mix3PathProblemException extends Mix3Exception {
+ public Mix3PathProblemException(String s) {
+ super(s);
+ }
+ public Mix3PathProblemException(String s, Throwable cause) {
+ super(s, cause);
+ }
+}