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:
java.io.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(java.lang.String message)
CacheNotTransactionalException(java.lang.String remoteMessage, long messageId, int errorStatusCode)
CacheNotTransactionalException(java.lang.String message, java.lang.Throwable cause)
CacheNotTransactionalException(java.lang.Throwable cause)
-
Method Summary
-
Methods inherited from class org.infinispan.client.hotrod.exceptions.HotRodClientException
isServerError, toString
-
-
-
-
Constructor Detail
-
CacheNotTransactionalException
public CacheNotTransactionalException()
-
CacheNotTransactionalException
public CacheNotTransactionalException(java.lang.String message)
-
CacheNotTransactionalException
public CacheNotTransactionalException(java.lang.Throwable cause)
-
CacheNotTransactionalException
public CacheNotTransactionalException(java.lang.String message, java.lang.Throwable cause)
-
CacheNotTransactionalException
public CacheNotTransactionalException(java.lang.String remoteMessage, long messageId, int errorStatusCode)
-
-