![JAR search and dependency download from the Maven repository](/logo.png)
com.gemstone.org.jgroups.SuspectedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-jgroups Show documentation
Show all versions of gemfire-jgroups Show documentation
SnappyData store based off Pivotal GemFireXD
The newest version!
/** Notice of modification as required by the LGPL
* This file was modified by Gemstone Systems Inc. on
* $Date$
**/
// $Id: SuspectedException.java,v 1.2 2005/07/17 11:38:05 chrislott Exp $
package com.gemstone.org.jgroups;
/**
* Thrown if a message is sent to a suspected member.
*/
public class SuspectedException extends Exception {
private static final long serialVersionUID = -7362834003171175180L;
Object suspect=null;
public SuspectedException() {}
public SuspectedException(Object suspect) {this.suspect=suspect;}
@Override // GemStoneAddition
public String toString() {return "SuspectedException";}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy