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

org.infinispan.remoting.CacheUnreachableException Maven / Gradle / Ivy

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

import org.infinispan.commons.CacheException;
import org.jgroups.UnreachableException;

/**
 * Signals a backup site was unreachable.
 *
 * @author Pedro Ruivo
 * @since 7.0
 */
public class CacheUnreachableException extends CacheException {

   public CacheUnreachableException(String message) {
      super(message);
   }

   public CacheUnreachableException(UnreachableException e) {
      super(e.toString());
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy