-
Notifications
You must be signed in to change notification settings - Fork 41.4k
Catch more general error for hibernate 4.2 #3605
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
JBoss EAP 6 class loader warps NoClassDefFoundError as cause of an LinkageError.
|
Detailed stack trace here: |
|
|
|
Thanks, have you signed the CLA? |
|
@snicoll , Yes, I singed the CLA. |
| @@ -147,7 +147,7 @@ private void configureSpringJtaPlatform(Map<String, Object> vendorProperties, | |||
| vendorProperties.put(JTA_PLATFORM, new SpringJtaPlatform( | |||
| jtaTransactionManager)); | |||
| } | |||
| catch (NoClassDefFoundError ex) { | |||
| catch (LinkageError ex) { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd say maybe comment the reason here, otherwise someone will replace it again.
|
@Shredder121 , I update the comment in 1cac850 |
* pr/3605: Catch more general Hibernate 4.2 LinkageError
JBoss EAP 6 class loader warps NoClassDefFoundError as cause of an LinkageError.