org.infinispan.hotrod.exceptions.RemoteNodeSuspectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-hotrod-jakarta Show documentation
Show all versions of infinispan-hotrod-jakarta Show documentation
Infinispan Hot Rod Client Jakarta EE
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);
}
}