Initial revision
[mir.git] / source / mir / module / ModuleException.java
diff --git a/source/mir/module/ModuleException.java b/source/mir/module/ModuleException.java
new file mode 100755 (executable)
index 0000000..b17e04a
--- /dev/null
@@ -0,0 +1,20 @@
+package mir.module;
+
+import java.lang.*;
+
+/*
+ *  ServletModuleException -
+ *  wird vom ServletModule geschmissen</b>
+ *
+ * 
+ * @version 5.7.199
+ * @author RK
+ */
+
+public final class ModuleException extends Exception
+{
+       public ModuleException(String msg) {
+               super(msg);
+       }
+}
+