Skip to content

Method: CommunicationException()

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