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

org.infinispan.topology.CacheJoinException 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 a cache fails to join a cluster
 *
 * @author Tristan Tarrant
 * @since 9.0
 */
public class CacheJoinException extends CacheException {
   private static final long serialVersionUID = 4394453405294292800L;

   public CacheJoinException() {
      super();
   }

   public CacheJoinException(Throwable cause) {
      super(cause);
   }

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

   public CacheJoinException(String msg, Throwable cause) {
      super(msg, cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy