summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-10-12 04:26:15 +0000
committerPeter Palfrader <peter@palfrader.org>2003-10-12 04:26:15 +0000
commit924bcfd7059a5ffd48ffcfe1aa14db252ff38930 (patch)
treec1b709e6efe1ead10641d6695373717351e73a6d
parent55ac26856d70224b17eb51f939e20547c1b2a71f (diff)
only throws Mix3Exception
-rw-r--r--src/org/noreply/fancydress/type3/Path.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/noreply/fancydress/type3/Path.java b/src/org/noreply/fancydress/type3/Path.java
index 8f492ec..4289f6b 100644
--- a/src/org/noreply/fancydress/type3/Path.java
+++ b/src/org/noreply/fancydress/type3/Path.java
@@ -12,7 +12,7 @@ public class Path {
HalfPath first;
HalfPath second;
- public Path(Directory dir, String path) throws Exception {
+ public Path(Directory dir, String path) throws Mix3Exception {
int crossover = path.indexOf(':');
if (crossover < 0)
throw new Mix3Exception("Path is not a valid path: no crossover point specified.");