Skip to content

Package: DefinitionNotFoundException

DefinitionNotFoundException

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

Coverage

1: /**
2: *
3: */
4: package model.exceptions;
5:
6: /**
7: * @author Muri
8: *
9: */
10: public class DefinitionNotFoundException extends Exception {
11:
12:         /**
13:          *
14:          */
15:         private static final long serialVersionUID = 1714971301517727912L;
16:
17:         /**
18:          *
19:          */
20:         public DefinitionNotFoundException() {
21:                 super();
22:                 // TODO Auto-generated constructor stub
23:         }
24:
25:         /**
26:          * @param arg0
27:          * arg0
28:          */
29:         public DefinitionNotFoundException(final String arg0) {
30:                 super(arg0);
31:                 // TODO Auto-generated constructor stub
32:         }
33:
34:         /**
35:          * @param arg0
36:          * arg0
37:          */
38:         public DefinitionNotFoundException(final Throwable arg0) {
39:                 super(arg0);
40:                 // TODO Auto-generated constructor stub
41:         }
42:
43:         /**
44:          * @param arg0
45:          * arg0
46:          * @param arg1
47:          * arg1
48:          */
49:         public DefinitionNotFoundException(final String arg0, final Throwable arg1) {
50:                 super(arg0, arg1);
51:                 // TODO Auto-generated constructor stub
52:         }
53:
54: }