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

org.infinispan.topology.MissingMembersException Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.topology;

import org.infinispan.commons.CacheException;

/**
 * Thrown when members are missing after a cluster shutdown.
 *
 * A cluster misses members after the cluster shutdown and a restart, and some previous members did not join again.
 *
 * @since 15.0
 */
public class MissingMembersException extends CacheException {
  public MissingMembersException(String msg) {
    super(msg);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy