IndexResponse response = listenableActionFuture.actionGet();
}
catch (JsonGenerationException e)
{
log.error("Error while creating json document", e);
throw new KunderaException(e);
}
catch (JsonMappingException e)
{
log.error("Error while creating json document", e);
throw new KunderaException(e);
}
catch (IOException e)
{
log.error("Error while creating json document", e);
throw new KunderaException(e);
}
catch (Exception e)
{
log.error("Error while creating indexes on document", e);
throw new KunderaException(e);
}
}