Skip to contentMethod: ReaderException(String)
      1: package reader;
2: 
3: /**
4:  * 
5:  * @author Phil
6:  * 
7:  */
8: public class ReaderException extends Exception {
9: 
10:         /**
11:          * 
12:          */
13:         private static final long serialVersionUID = -8930236833657301786L;
14: 
15:         /**
16:          * Constructor for creating an Exception for all Exceptions caused by reading files.
17:          * 
18:          * @param causeE
19:          *            The original exception caused by java.
20:          * @param message
21:          *            The message to set.
22:          */
23:         public ReaderException(final String message, final Exception causeE) {
24:                 super(message, causeE);
25:         }
26: 
27:         /**
28:          * 
29:          * @param string
30:          *            msg.
31:          */
32:         public ReaderException(final String string) {
33:                 super(string);
34:         }
35: }