code cleanups
[mir.git] / source / mir / servlet / ServletModuleUserException.java
1 package mir.servlet;
2
3 import java.lang.*;
4
5 /*
6  *  ServletModuleUserException -
7  *  Return an Exception with a simple String Message Method
8  *  Differentiates user errors from System bugs/errors.
9  *
10  * 
11  * @version 02.2002
12  * @author mh
13  */
14
15 public final class ServletModuleUserException extends Exception
16 {
17   String msg;
18
19   public ServletModuleUserException(String msg) {
20     super(msg);
21     this.msg = msg;
22   }
23
24   public String getMsg() {
25     return msg;
26   }
27 }
28