Skip to content

Package: CommunicationException

CommunicationException

nameinstructionbranchcomplexitylinemethod
CommunicationException()
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%
CommunicationException(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%

Coverage

1: package update.remote.imond;
2:
3: /**
4: * This is the exception class for the imond communication.
5: *
6: * @author Patrick Kriegel
7: *
8: */
9: @SuppressWarnings("serial")
10: public class CommunicationException extends Exception {
11:
12:         /**
13:          * Creates new CommunicationException without detail message.
14:          */
15:         public CommunicationException() {
16:                 super();
17:         }
18:
19:         /**
20:          * Constructs an CommunicationException with the specified detail message.
21:          *
22:          * @param message
23:          * the detail message.
24:          */
25:         public CommunicationException(final String message) {
26:                 super(message);
27:         }
28: }