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

org.infinispan.client.hotrod.exceptions.RemoteNodeSuspectException Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.client.hotrod.exceptions;

/**
 * When a remote node is suspected and evicted from the cluster while an
 * operation is ongoing, the Hot Rod client emits this exception.
 *
 * @author Galder Zamarreño
 * @since 4.2
 */
public class RemoteNodeSuspectException extends HotRodClientException {

   public RemoteNodeSuspectException(String msgFromServer, long messageId, short status) {
      super(msgFromServer, messageId, status);
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy