* Throw a user exception if there is an active transaction.
* @param methodName the name of the method
*/
private void assertNotActive(String methodName) {
if (transactionState.isActive()) {
throw new ClusterJUserException(
local.message("ERR_Transaction_Must_Not_Be_Active_For_Method",
methodName));
}
}