All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.SuspectedException Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version

package org.jgroups;

/**
 * Thrown if a message is sent to a suspected member.
 * 
 * @since 2.0
 * @author Bela Ban
 */
public class SuspectedException extends Exception {
    final Object suspect;

    private static final long serialVersionUID=-6663279911010545655L;

    public SuspectedException()                {this.suspect=null;}
    public SuspectedException(Object suspect)  {this.suspect=suspect;}

    public String toString() {return "SuspectedException";}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy