01: // $Id: TimeoutException.java,v 1.4 2006/02/16 08:41:32 belaban Exp $
02:
03: package org.jgroups;
04:
05: /**
06: * Thrown if members fail to respond in time.
07: */
08: public class TimeoutException extends Exception {
09: private static final long serialVersionUID = -3555655828017487825L;
10:
11: public TimeoutException() {
12: super ("TimeoutException");
13: }
14:
15: public TimeoutException(String msg) {
16: super (msg);
17: }
18:
19: public String toString() {
20: return super.toString();
21: }
22: }
|