Skip to content

Package: ScannerException

ScannerException

nameinstructionbranchcomplexitylinemethod
ScannerException(String)
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 scanner;
2:
3: /**
4: * This class represents all Exception from scanner.
5: *
6: * @author Hendrik
7: *
8: */
9: public class ScannerException extends Exception {
10:
11:         /**
12:          * generated serialVersionID.
13:          */
14:         private static final long serialVersionUID = 867373642956183830L;
15:
16:         /**
17:          * This constructor initialize the ScannerException.
18:          *
19:          * @param text
20:          * is the text of the exception.
21:          */
22:         public ScannerException(final String text) {
23:                 super(text);
24:         }
25:
26: }