Skip to content

Package: ParserException

ParserException

nameinstructionbranchcomplexitylinemethod
ParserException(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%
ParserException(String, Throwable)
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: /**
2: *
3: */
4: package parser;
5:
6: /**
7: * @author Muri
8: *
9: */
10: public class ParserException extends Exception {
11:
12:         /**
13:          *
14:          */
15:         private static final long serialVersionUID = -5551411291120072305L;
16:
17:         /**
18:          * @param arg0
19:          * arg0
20:          */
21:         public ParserException(final String arg0) {
22:                 super(arg0);
23:         }
24:
25:         /**
26:          *
27:          * @param message
28:          * is the message for the exception.
29:          * @param throwable
30:          * is the throwable which is encapsulated.
31:          */
32:         public ParserException(final String message, final Throwable throwable) {
33:                 super(message, throwable);
34:         }
35: }