Skip to content

Method: TypeExceptions(String)

1: /**
2: *
3: */
4: package model.type;
5:
6: /**
7: * @author Hendrik
8: *
9: */
10: public abstract class TypeExceptions extends Exception {
11:
12:         /**
13:          *
14:          */
15:         private static final long serialVersionUID = -1443367423954144274L;
16:
17:         /**
18:          * @param msg
19:          * Error msg
20:          */
21:         public TypeExceptions(final String msg) {
22:                 super(msg);
23:
24:         }
25:
26: }