Expand error handling to cover anything that is recoverable (or might be recoverable) when loading classes during HandlesTypes processing.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1152595 13f79535-47bb-0310-9956-
ffa450edef68
log.warn(sm.getString("contextConfig.invalidSciHandlesTypes",
className), e);
return;
+ } catch (Throwable t) {
+ ExceptionUtils.handleThrowable(t);
+ log.warn(sm.getString("contextConfig.invalidSciHandlesTypes",
+ className), t);
+ return;
}
if (clazz.isAnnotation()) {
to/from URLs when working with resources from a Context so special
characters don't cause issues. (markt)
</fix>
+ <fix>
+ <bug>51586</bug>: Expand error handling to cover anything that is
+ recoverable (or might be recoverable) when loading classes during
+ HandlesTypes processing. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">