TimeoutException.java :  » Net » JGroups-2.4.1-sp3 » org » jgroups » Java Open Source

Java Open Source » Net » JGroups 2.4.1 sp3 
JGroups 2.4.1 sp3 » org » jgroups » TimeoutException.java
// $Id: TimeoutException.java,v 1.4 2006/02/16 08:41:32 belaban Exp $

package org.jgroups;

/**
 * Thrown if members fail to respond in time.
 */
public class TimeoutException extends Exception {
    private static final long serialVersionUID = -3555655828017487825L;

    public TimeoutException() {
        super("TimeoutException");
    }

    public TimeoutException(String msg) {
        super(msg);
    }


    public String toString() {
        return super.toString();
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.