Skip to contentMethod: LibReaderException(String)
      1: /**
2:  * 
3:  */
4: package libraries;
5: 
6: /**
7:  * @author Hendrik
8:  * 
9:  */
10: public class LibReaderException extends Exception {
11: 
12:         /**
13:          * the serialVersionUID.
14:          */
15:         private static final long serialVersionUID = 4738370998299333260L;
16: 
17:         /**
18:          * constructor.
19:          */
20:         public LibReaderException() {
21:                 super();
22:         }
23: 
24:         /**
25:          * constructor.
26:          * 
27:          * @param string
28:          *            errormsg.
29:          */
30:         public LibReaderException(final String string) {
31:                 super(string);
32:         }
33: 
34: }