Class CacheNotTransactionalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.infinispan.client.hotrod.exceptions.HotRodClientException
-
- org.infinispan.client.hotrod.exceptions.CacheNotTransactionalException
-
- All Implemented Interfaces:
Serializable
public class CacheNotTransactionalException extends HotRodClientException
When try to create a transactionalorg.infinispan.client.hotrod.RemoteCache
but the cache in the Hot Rod server isn't transactional, this exception is thrown. Check if the cache is properly configured in the server configuration.- Since:
- 10.0
- Author:
- Pedro Ruivo
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CacheNotTransactionalException()
CacheNotTransactionalException(String message)
CacheNotTransactionalException(String remoteMessage, long messageId, int errorStatusCode)
CacheNotTransactionalException(String message, Throwable cause)
CacheNotTransactionalException(Throwable cause)
-
Method Summary
-
Methods inherited from class org.infinispan.client.hotrod.exceptions.HotRodClientException
isServerError, toString
-
-
-
-
Constructor Detail
-
CacheNotTransactionalException
public CacheNotTransactionalException()
-
CacheNotTransactionalException
public CacheNotTransactionalException(String message)
-
CacheNotTransactionalException
public CacheNotTransactionalException(Throwable cause)
-
CacheNotTransactionalException
public CacheNotTransactionalException(String message, Throwable cause)
-
CacheNotTransactionalException
public CacheNotTransactionalException(String remoteMessage, long messageId, int errorStatusCode)
-
-