Skip to content

Package: ReaderException

ReaderException

nameinstructionbranchcomplexitylinemethod
ReaderException(String)
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
ReaderException(String, Exception)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

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: }