org.springframework.data.tarantool.TarantoolClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-tarantool Show documentation
Show all versions of spring-data-tarantool Show documentation
Spring Data module for Tarantool and Tarantool Cartridge for Tarantool versions 1.10+
package org.springframework.data.tarantool;
import org.springframework.dao.support.PersistenceExceptionTranslator;
public interface TarantoolClientFactory {
/**
* Return exception translator to be used for the client exceptions
*
* @return a {@link PersistenceExceptionTranslator} instance
*/
PersistenceExceptionTranslator getExceptionTranslator();
}