public DataAccessException translateExceptionIfPossible(Exception ex) {
if (ex instanceof RuntimeException) {
return exceptionTranslator.translateExceptionIfPossible((RuntimeException) ex);
}
return new UncategorizedGraphStoreException("Error executing callback", ex);
}