We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cece09 commit f49a58eCopy full SHA for f49a58e
src/main/java/com/fasterxml/jackson/databind/DeserializationFeature.java
@@ -290,6 +290,10 @@ public enum DeserializationFeature implements ConfigFeature
290
* {@link com.fasterxml.jackson.core.JacksonException}s) will
291
* always be passed as-is.
292
*<p>
293
+ * Disabling this feature will mean that you will need to adjust your try/catch
294
+ * blocks to properly handle {@link RuntimeException}s. Failing to do so,
295
+ * may cause your application to crash due to unhandled exceptions.
296
+ *<p>
297
* Feature is enabled by default.
298
*/
299
WRAP_EXCEPTIONS(true),
0 commit comments