Fix MultiCircleJpaCascadeTest#testPersistNoCascadeToTransient() test

This commit is contained in:
Andrea Boriero 2016-04-29 12:57:39 +01:00 committed by Steve Ebersole
parent 9e4b90e72a
commit bec73b3bd3
1 changed files with 6 additions and 1 deletions

View File

@ -770,7 +770,12 @@ public final class SessionImpl
throw convert( e );
}
finally {
checkNoUnresolvedActionsAfterOperation();
try {
checkNoUnresolvedActionsAfterOperation();
}
catch (RuntimeException e) {
throw convert( e );
}
}
}