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

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

The newest version!
package org.infinispan.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.
 *
 * @since 14.0
 */
public class RemoteNodeSuspectException extends HotRodClientException {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy