Skip to content

Commit

Permalink
Pass orig exception too.
Browse files Browse the repository at this point in the history
  • Loading branch information
asvitkine committed Jul 12, 2023
1 parent 5bffc8d commit f7ccdad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void startHistoryEvent(final String event, final Object renderingData) {
} catch (ConcurrentModificationException e) {
// Instrumented to diagnose what exactly is causing this.
throw new ConcurrentModificationException(
"Failed to map renderingData=" + renderingData + " for event=" + event);
"Failed to map renderingData=" + renderingData + " for event=" + event, e);
}
});
}
Expand Down

0 comments on commit f7ccdad

Please sign in to comment.