Skip to contentMethod: CheckScriptException(Exception)
      1: package pruefskript.parser.exceptions;
2: 
3: /**
4:  * 
5:  * @author group B5
6:  * 
7:  */
8: public abstract class CheckScriptException extends Exception {
9: 
10:         /**
11:          * 
12:          */
13:         private static final long serialVersionUID = 2515962350356276457L;
14: 
15:         /**
16:          * method PruefscriptException.
17:          * 
18:          * @param text
19:          *            String
20:          */
21:         public CheckScriptException(final String text) {
22:                 super(text);
23:         }
24: 
25:         /**
26:          * method PruefscriptException.
27:          * 
28:          * @param e
29:          *            Exception
30:          */
31:         public CheckScriptException(final Exception e) {
32:                 super(e);
33:         }
34: }