*
* @param template the spring transaction template
* @return the created error handler
*/
public TransactionErrorHandlerBuilder transactionErrorHandler(TransactionTemplate template) {
TransactionErrorHandlerBuilder answer = new TransactionErrorHandlerBuilder();
answer.setTransactionTemplate(template);
return answer;
}