Initial revision
[mir.git] / source / mir / servlet / ServletModuleException.java
1 package mir.servlet;
2
3 import java.lang.*;
4
5 /*
6  *  ServletModuleException -
7  *  wird vom ServletModule geschmissen</b>
8  *
9  * 
10  * @version 28.6.199
11  * @author RK
12  */
13
14 public final class ServletModuleException extends Exception
15 {
16         public ServletModuleException(String msg) {
17                 super(msg);
18         }
19 }
20