Skip to content

Package: RemoteUpdateException

RemoteUpdateException

nameinstructionbranchcomplexitylinemethod
RemoteUpdateException()
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%
RemoteUpdateException(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%
RemoteUpdateException(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%
RemoteUpdateException(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: package update.remote.exceptions;
2:
3: /**
4: * Exception thrown when remote update did not succeed.
5: *
6: * @author Muri
7: *
8: */
9: public class RemoteUpdateException extends Exception {
10:
11:         /**
12:          * UID.
13:          */
14:         private static final long serialVersionUID = -219214915239116510L;
15:
16:         /**
17:          *
18:          */
19:         public RemoteUpdateException() {
20:                 super();
21:                 // TODO Auto-generated constructor stub
22:         }
23:
24:         /**
25:          *
26:          * @param arg0
27:          * arg0
28:          */
29:         public RemoteUpdateException(final String arg0) {
30:                 super(arg0);
31:                 // TODO Auto-generated constructor stub
32:         }
33:
34:         /**
35:          *
36:          * @param arg0
37:          * arg0
38:          */
39:         public RemoteUpdateException(final Throwable arg0) {
40:                 super(arg0);
41:                 // TODO Auto-generated constructor stub
42:         }
43:
44:         /**
45:          *
46:          * @param arg0
47:          * arg0
48:          * @param arg1
49:          * arg1
50:          */
51:         public RemoteUpdateException(final String arg0, final Throwable arg1) {
52:                 super(arg0, arg1);
53:                 // TODO Auto-generated constructor stub
54:         }
55:
56: }