summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/status/Mix3BadArgumentsIllegalPathSpecException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/status/Mix3BadArgumentsIllegalPathSpecException.java')
-rw-r--r--src/org/noreply/fancydress/status/Mix3BadArgumentsIllegalPathSpecException.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/status/Mix3BadArgumentsIllegalPathSpecException.java b/src/org/noreply/fancydress/status/Mix3BadArgumentsIllegalPathSpecException.java
new file mode 100644
index 0000000..01c4a6d
--- /dev/null
+++ b/src/org/noreply/fancydress/status/Mix3BadArgumentsIllegalPathSpecException.java
@@ -0,0 +1,15 @@
+/* $Id$ */
+package org.noreply.fancydress.status;
+
+/**
+ * The operation failed because the chain specified does not fit into a single
+ * leg.
+ */
+public class Mix3BadArgumentsIllegalPathSpecException extends Mix3BadArgumentsException {
+ public Mix3BadArgumentsIllegalPathSpecException(String s) {
+ super(s);
+ }
+ public Mix3BadArgumentsIllegalPathSpecException(String s, Throwable cause) {
+ super(s, cause);
+ }
+}