summaryrefslogtreecommitdiff
path: root/tutorial/examples/multimethod/NoAddaptableMethodException.java
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/examples/multimethod/NoAddaptableMethodException.java')
-rw-r--r--tutorial/examples/multimethod/NoAddaptableMethodException.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/tutorial/examples/multimethod/NoAddaptableMethodException.java b/tutorial/examples/multimethod/NoAddaptableMethodException.java
new file mode 100644
index 0000000..c51b2c0
--- /dev/null
+++ b/tutorial/examples/multimethod/NoAddaptableMethodException.java
@@ -0,0 +1,24 @@
+/*
+ * NoAddaptableMethodException.java
+ *
+ * @author Michiaki Tatsubori
+ * @version %VERSION% %DATE%
+ * @see java.lang.Object
+ *
+ * COPYRIGHT 1999 by Michiaki Tatsubori, ALL RIGHTS RESERVED.
+ */
+package examples.multimethod;
+
+
+import java.lang.Exception;
+
+
+/**
+ * The exception <code>NoAddaptableMethodException</code> is thrown
+ * in case that there is no method addaptable to given parameters.
+ * <p>
+ *
+ * @see examples.multimethod.MultiMethodClass
+ */
+public class NoAddaptableMethodException extends Exception
+{}