No, because the exception is handled just by logging it, it doesn't get queued. It's this bit in PartialViewContextImpl.processPartial
1
2 try {
3 processComponents(viewRoot, phaseId, executeIds, ctx);
4 } catch (Exception e) {
5 if (LOGGER.isLoggable(Level.INFO)) {
6 LOGGER.log(Level.INFO,
7 e.toString(),
8 e);
9 }
10 }
where logger is a java.util.logging.Logger
I'm sure it's just a configuration issue, but I can't work out what!
John