Skip to content

Package: AddToOptException

AddToOptException

nameinstructionbranchcomplexitylinemethod
AddToOptException(Exception)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: package pruefskript.parser.exceptions;
2:
3: /**
4: * AddToOptException.
5: *
6: * @author group B5
7: *
8: */
9: public class AddToOptException extends CheckScriptException {
10:
11:         /**
12:          *
13:          */
14:         private static final long serialVersionUID = 1L;
15:
16:         /**
17:          *
18:          * @param e
19:          * Exception
20:          */
21:         public AddToOptException(final Exception e) {
22:                 super(e);
23:         }
24:
25: }