// OLAT-3621: raising log level from WARN to ERROR to have this pop up in tests more. plus added a stacktrace for debugging ease.
Tracing.logError("Could not call hibernateTransaction.rollback() because is not Active or already rolledback", new Exception("DBTransaction.rollback()"), this.getClass());
}
this.rolledBack = true;
} catch (HibernateException e) {
throw new DBRuntimeException("DB rollback transaction failed. ", e);
}
}