https://issues.apache.org/bugzilla/show_bug.cgi?id=48902
--- Comment #8 from Cyrille Le Clerc <[email protected]> 2010-11-12 09:30:21 EST --- Hello Julien, This CompactThrowableRenderer.java seems to be fragile to infinite hierarchies of throwables (e.g. A.cause=B, B.cause=C and C.cause=A): it would cause a StackOverFlowError. The "getThrowableList(Throwable throwable)" method I used in my proposed patch prevents it. Commons-lang's ExceptionUtils.getThrowableList(Throwable) is a more sophisticated approach. Cyrille -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
