jackson-databind: `AnnotatedMethod.getValue()/setValue()` doesn't have useful exception message
InvocationTargetException.getMessage()
will always be null. Should probably be using InvocationTargetException.getCause().getMessage()
instead.
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 18 (12 by maintainers)
Commits related to this issue
- Expose message of cause in case of `InvocationTargetException` (#3109) Fixes #2509. — committed to FasterXML/jackson-databind by Stephan202 3 years ago
- Backport #2509 fix in 2.13 — committed to FasterXML/jackson-databind by cowtowncoder 3 years ago
@Stephan202 Excellent! Thank you for resolving this; I backported the fix in 2.13 for 2.13.0 release.