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: 9.1.7.Final
Show newest version
package org.infinispan.remoting;

import org.jgroups.UnreachableException;

/**
 * Wraps the UnreachableException.
 *
 * @author Pedro Ruivo
 * @since 7.0
 */
public class CacheUnreachableException extends RuntimeException {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy