Skip to contentMethod: ScannerException(String)
      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: }